例如 要把参数从页面a.html传到页面b.html(同目录)
a.html页面中:
//获得页面的webview var view = plus.webview.getWebviewById(‘b.html‘); mui.fire(view,‘goit‘,{name:‘007‘}); mui.openWindow({url:‘b‘});
b.html页面中:(获取方式:e.detail.xxx)
window.addEventListener(‘ljgm‘, function(e){ //获取参数值 var name = e.detail.name; });
时间: 2024-10-11 22:10:34