JS禁止右键及禁止选中文本

mac2022-06-30  23

//禁止右键 $(function() { $('body').bind('contextmenu', function() { return false; }); }); //禁止选中 if (document.all) { document.onselectstart = function () { return false; }; //for ie } else { document.onmousedown = function () { return false; }; document.onmouseup = function () { return true; }; } document.onselectstart = new Function('event.returnValue=false;');

转载于:https://www.cnblogs.com/Stillwatersrundeep/p/6845557.html

相关资源:用JavaScript和注册表脚本实现右键收藏Web页选中文本
最新回复(0)