码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-05-12 15:38:35      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:ret   on()   select   art   文本   start   down   function   turn   

//禁止右键
$(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;‘);

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

标签:ret   on()   select   art   文本   start   down   function   turn   

原文地址:http://www.cnblogs.com/Stillwatersrundeep/p/6845557.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!