标签:时间 页面 style 点击事件 function xtend mct star color
/*触摸屏幕时间事件(需要先引入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"});
标签:时间 页面 style 点击事件 function xtend mct star color
原文地址:https://www.cnblogs.com/Cloudloong/p/9563231.html