js事件-禁止/触发
2021-06-06 01:01
标签:com nts 右击 手动 before document art win var $(window).on({ //禁止鼠标事件/点透效果 为样式添加 js事件-禁止/触发 标签:com nts 右击 手动 before document art win var 原文地址:http://www.cnblogs.com/xiaojiaoya/p/7340454.html
//手动触发回车键
$(window).on("keydown", function(e){
var ev = document.all ? window.event : e;
if(ev.keyCode==13) {
window.location.href = "http://www.soscw.com/VRegister.html"
}
})
contextmenu: function(){//禁止右击
return false;
},
dragstart: function(){//禁止拖拉
return false;
},
selectstart: function(){//文字禁止鼠标选中
document.selection.empty();
// return false;
},
copy: function(){//禁止复制文本
document.selection.empty();
},
beforecopy: function(){
return false;
},
mouseup: function(){//禁止点击
return false
}
})pointer-events:none;