mui.openWindow
extras:{
.....//自定义扩展参数,可以用来处理页面间传值
}
}
这个没看懂,
extras:新窗口的额外扩展参数,可用来处理页面间传值;例如:var webview = mui.openWindow({url:'info.html',extras:{name:'mui'}});console.log(webview.name);,会输出"mui"字符串;注意:扩展参数仅在打开新窗口时有效,若目标窗口为预加载页面,则通过mui.openWindow方法打开时传递的extras参数无效。
怎么能在新页面获取到传递过来的值?
一卡通 (作者)
在A打开B,想把name:'mui'传给B,在A里这么写?
var webview = mui.openWindow({url:'B.html',extras:{name:'mui'}});在b里这么写?console.log(webview.name);
2015-05-20 10:35