# H5Plus

H5Plus使用 (opens new window)

# 双击事件不生效

mui双击事件默认关闭,所以在要在init()方法中启用mui双击

mui.init({
	gestureConfig: {
		doubletap: true
	}
});

# pullrefresh加载数据事件不生效

// 解决容器中onclick事件触发不了的问题
$("#pullrefreshs").on('tap', '.btn_red', function (event) {
	this.click();
});
// a标签点击事件失效
mui("#pullrefreshs").on('tap', '.item', function (event) {
	document.location.href = this.href;
});

# mui-popover弹窗移动端不能滑动问题

在pc端可以滑动,到移动端就不行了,通过 EVENT_MOVE 查找到这一段代码,删除即可

this.addEventListener(a.EVENT_MOVE,a.preventDefault)