1.fastclick.js(同时解决click事件300ms延迟问题)
2.用touchend代替tap事件并阻止掉touchend的默认行为preventDefault()
$(".j_drawBtn").on("touchend",function (event) {
event.preventDefault();
//事件
});
3.延迟一定的时间(300ms+)来处理事件
$(".j_drawBtn").on("tap",function (event) {
setTimeout(function(){
//事件
},320);
};)