js禁止
2021-05-16 01:29
标签:代码 text function eve cli 定义 相关 contex def 很多时候需要用到js禁止相关的代码: js禁止 标签:代码 text function eve cli 定义 相关 contex def 原文地址:http://www.cnblogs.com/andyhxl/p/7749707.htmlfunction prohibit() {
// 禁止右键
$(document).ready(function() {
$(document).bind("contextmenu", function(e) {
return false;
});
// 禁止a
$("a").each(function() {
$(this).css("cursor", "default"); // 修改鼠标样式
$(this).removeAttr(‘href‘); //移除href 属性
$(this).click(function(event) {
event.preventDefault(); // 如果定义了 target="_blank“ 需要这句来阻止打开新页面
});
});
});
}
prohibit();