mui.openWindow的html5+和web传参的兼容
2021-03-08 07:29
标签:margin padding 原理 console tor 公众号 script article else mui.openWindow兼容web&plus环境下的页面传参 本文转载于猿2048:mui.openWindow的html5+和web传参的兼容 mui.openWindow的html5+和web传参的兼容 标签:margin padding 原理 console tor 公众号 script article else 原文地址:https://www.cnblogs.com/jlfw/p/12800195.html
背景介绍
兼容原理
使用场景
使用方法
引入mui.openWindow.js文件,正常写传参代码
mui.openWindow({
url: ‘target.html‘,
id: ‘target‘,
extras: {name:‘mui‘}
});
接收参数页面
// 同步调用
if (mui.os.plus) {
mui.plusReady(function(){
var extras = mui.getExtras();
console.log(extras);
});
}else{
var extras = mui.getExtras();
console.log(extras);
}
// 异步调用
mui.getExtras(function(extras){
console.log(extras);
});
上源码
文章标题:mui.openWindow的html5+和web传参的兼容
文章链接:http://soscw.com/index.php/essay/61716.html