|
window.location.href跳转的时候既没有触发页面离开事件也没有触发页面关闭事件,H5制作台的这两个页面事件是不是坏了。
Model.prototype.modelOnInactiveCallback = function(event){
{
'use strict';
//当前函数的代码为自动生成,请勿手动修改!!!
function code(event) { alert("111");}
return code.apply(this, arguments);
}
};
Model.prototype.modelOnunLoadCallback = function(event){
{
"use strict";
//当前函数的代码为自动生成,请勿手动修改!!!
function code(event) {
alert("222");
}
return code.apply(this, arguments);
}
};
|
|