/*触摸屏幕时间事件(需要先引入JQ插件)*/
$.fn.extend({
mctap:function(func){
var _this=this;
this.on('touchstart',function(e){
tiptimer=new Date();
}).on('touchend',function(e){
if(new Date()-tiptimer>300) {func.bind(this,e)();}
})
}
});
/*禁止页面点击*/
$("#xxx").css({"pointer-events":"none"});