mui下拉刷新 ios click事件无法响应问题

使用mui的事件监听事件 tap

mui("#pullrefresh").on('tap', '.ulDiv', function (event) {
this.click();
});

 

 

如果下拉列表项中有其他事件:

 

mui("#pullrefresh").on('tap', 'a', function (event) {
this.click();
event.stopPropagation();//  阻止除了 a标签以外事件的点击
});

posted @ 2018-08-21 16:38  Duan?  阅读(769)  评论(0编辑  收藏  举报