本来用mui.openWindow()可以成功创建新窗口和触发事件传值了,但是改用mui.openWindowWithTitle就报了is not a function的错误
item.addEventListener('tap',function(){
$.alert(this.data,this.innerHTML,'确认');
// 触发详情页面
var content = this.data;
var title = this.title;
if(!detailPage){
detailPage = plus.webview.getWebviewById('lawDetail.html');
}
$.fire(detailPage,'newContent',{
content:content
});
mui.openWindowWithTitle({
id:'lawDetail.html',
title:{
text:title,
position:{
top:0,
left:0,
width:"100%",
height:"100%"
}
},
back:{
image:{
base64Data:'',
position:{
top:"10px",
left:"10px",
width:"24px",
height:"24px"
}
},
click:function(){
}
}
})
});
求大神指点~
现在用了新版本的mui.js解决了报错问题,但是创建出来的窗口和openWindow()的效果一样,还是不带标题栏的,呜,这是为什么呢
f***@126.com (作者)
感谢大神,用了新的js文件以后不报错了,但是创建出来的窗口和openWindow()的效果一样,还是不带标题栏的,呜,这是为什么呢
2017-04-01 14:21
4***@qq.com
不可能吧,肯定是你那里配置错啦
2017-04-05 10:16