mui传参原理介绍
程序员文章站
2024-01-17 12:12:46
mui传参
mui.openwindow({
url: 'szdetail.html',
show: {
anishow: 'pop-in'
},
extras:...
mui传参
mui.openwindow({
url: 'szdetail.html',
show: {
anishow: 'pop-in'
},
extras: { //extras里面的就是参数了
name: that.list[index]
},
waiting: {
autoshow: true, //自动显示等待框,默认为true
}
});
将要跳转的页面:
mui.plusready(function(){
var self = plus.webview.currentwebview();
vm.list = self.name;//获得参数
});
下一篇: JS监听滚动和id自动定位滚动