写了最近简单的openWindow,打开总是白屏。
mui.openWindow({
id: 'findpassword.html',
url: 'findpassword.html'
});
通过chrome调试,可以如下图示。
从日志中看,应该是加载成功了,我为了测试页面真的加载了,在代码中加入了一个alert测试,对话框可以弹出来。
mui.plusReady(function() {
//关闭等待框
plus.nativeUI.closeWaiting();
//显示当前页面
mui.currentWebview.show();
mui.alert("太感谢了", "hello");
});