js防复制、禁止右键

来源:互联网 发布:php 微商城平台版源码 编辑:程序博客网 时间:2024/05/17 19:23
// 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");       
}
0 0
原创粉丝点击