mui.openWindow重新再次打开一个页面时,怎么让打开页面的mui.plusready()函数再重新执行一次
执行mui.openWindow函数页面代码:
mui.openWindow({
url : "index.html",
id : 'index',
});
被打开页面的plusready(函数):
mui.plusReady(function(){
var vuexx = plus.storage.getItem('option');
document.getElementById('ct').innerHTML = vuexx;
}
1 个回复
1***@qq.com
A页面跳转B页面,B页面打开时会自动运行plusReady里面的函数