# MUI

# 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;
});