关于IOS不能使用JQUERY的ON事件

参考链接

$(document).on('click','.a .b',function(){
	var id=$(this).attr('id');
	if(id){
	window.location.href="{WEB_PATH}/mobile/mobile/item/"+id;
}
});
将click 改成 click touchstart
$(document).on('click touchstart','.a .b',function(){
	var id=$(this).attr('id');
	if(id){
		window.location.href="{WEB_PATH}/mobile/mobile/item/"+id;
	}
});
原文地址:https://www.cnblogs.com/AbbyXie/p/11525908.html