1俱诸、打開頁(yè)面控制面板(F12 或者->設(shè)置->開發(fā)者工具)
// 解除禁止右鍵菜單
document.oncontextmenu = function(){ return true; };
//解除 禁止文字選擇
document.onselectstart = function(){ return true; };
// 解除禁止復(fù)制
document.oncopy = function(){ return true; };
// 解除禁止剪切
document.oncut = function(){ return true; };
// 解除禁止粘貼
document.onpaste = function(){ return true; }
直接拿去粘貼運(yùn)行即可
若要想禁用這些return false 即可