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

js防复制、禁止右键

时间:2015-04-28 21:01:31      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

// JavaScript Document
$(function(){ 
$(document).bind("contextmenu",function(e){ return false; }); 


}); 
if (typeof(document.onselectstart) != "undefined") {       
    // IE下禁止元素被选取       
    document.onselectstart = new Function("return false");       
} else {
    // firefox下禁止元素被选取的变通办法       
    document.onmousedown = new Function("return false");       
    document.onmouseup = new Function("return true");       
}

js防复制、禁止右键

标签:

原文地址:http://blog.csdn.net/huileiforever/article/details/45341799

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