A页面function toScanGoods(){
mui.openWindow({
url:'pages/scan/scanGoods.html',
id:'scanGoods',
extras:{
name:'muiname' //扩展参数
}
});
}
B页面document.getElementById('materialInfoBtn').addEventListener('tap', function() {
mui.openWindow({
url:'../info/materialInfo.html',
id:'materialInfo'
});
//document.location.href="../info/materialInfo.html";
});
为什么我从A页面打开B页面很顺利,但是从B页面继续打开新页面就卡住了,一直在转圈圈,路径绝对正确,用下面的document又可以打开
你梅哥 (作者)
mui.openWindow这个方法在各个页面 有的能用 有的不能用 有时候卡死转圈圈,有时候闪退回原来页面 ,真不晓得怎么搞
2018-01-09 16:08