网页禁用右键及Ctrl+C复制的JS代码

把以下代码放到body中

document.oncontextmenu = function(){

return false;

}

document.onkeydown = function(){

if (event.ctrlKey && window.event.keyCode==67){

return false;

}

}

document.body.oncopy = function (){

return false;

}

//不建议连选中文本都不行

document.onselectstart = function(){

//return false;

}

你可能感兴趣的:(网页禁用右键及Ctrl+C复制的JS代码)