跳页传参取不到参数, debug了一下, plusReady的回调没有进去, window上没有plus对象
A.html -> B.html
A.html 中的脚本
mui.init();
mui('.mui-content').on('tap', '#community-list-btn', function() {
//打开关于页面
mui.openWindow({
url: './tpl/community_index.html',
id: './tpl/community_index.html',
extras: {
name:'mui',
version:'0.5.8'
}
})
})
B.html中的脚本
<script src="../js/mui.min.js"></script>
<script type="text/javascript" charset="UTF-8">
mui.init();
mui.plusReady(function() {
var self = plus.webview.currentWebview();
var name = self.name;
var version = self.version;
})
</script>
一定是哪里写错了, 求官方指点 @DCloud_MUI_CHB
Sirormy (作者)
谢谢,谢谢,不知道有这个前提,在iOS模拟器中取到了
2016-02-24 18:13