代码如下,ios9.2中侧滑template.html webview 无法监听到事件
index.html中:
//模版页面预加载
var template_page = mui.preload({
id: 'manage_template',
url: 'app/common/template.html',
extras:{},//自定义扩展参数
styles: {
popGesture:"hide",
left:'100%'
}
});
template.html中:
mui.plusReady(function(){
plus.webview.currentWebview().addEventListener('popGesture',function(e){
console.log('侧滑');
},false);
});
0 个回复