问题,纯html5页面传值问题。A页面向B页面传值 。
A页面:
openwindow: function(symbol) {
mui.toast('symbol is ' symbol);
mui.openWindow({
url: 'B.html',
id: 'B.html',
extras: {
symbol: symbol
},
show: {
autoShow: false
},
waiting: {
autoShow: true, //自动显示等待框,默认为true
}
});
B页面:
function plusReady() {
console.log("3")
//var self = plus.webview.currentWebview();
//alert(self.symbol);
}
if(window.plus) {
console.log("1")
plusReady();
} else {
console.log("2")
document.addEventListener("plusready", plusReady, false);
console.log("plusready")
}
window.onload = function() {
mui.plusReady(function() {
var self = plus.webview.currentWebview();
mui.toast(self.symbol);
});
}
为什么打印的结果没有3呢,另外 mui.plusReady也不会执行
1 个回复
zzyy
mui.plusReady要在手机端才能使用