使用mui的事件监听事件 tap
mui("#pullrefresh").on('tap', '.ulDiv', function (event) {this.click();});
如果下拉列表项中有其他事件:
mui("#pullrefresh").on('tap', 'a', function (event) {this.click();event.stopPropagation();// 阻止除了 a标签以外事件的点击});