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标签以外事件的点击
});

原文地址:https://www.cnblogs.com/duanzb/p/9512235.html