js防复制、禁止右键

// 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");       
}

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。