js禁止
Posted 叫我小龙哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js禁止相关的知识,希望对你有一定的参考价值。
很多时候需要用到js禁止相关的代码:
function 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(); // 如果<a>定义了 target="_blank“ 需要这句来阻止打开新页面 }); }); }); } prohibit();