网站教程

网页怎么禁用鼠标右键菜单,防止复制、粘贴呢?用下面js代码就可以了!

// 禁止右键菜单
document.oncontextmenu = function(){ return false; };
// 禁止文字选择
document.onselectstart = function(){ return false; };
// 禁止复制
document.oncopy = function(){ alert('对不起,禁止复制!'); };
// 禁止剪切
document.oncut = function(){ return false; };
// 禁止粘贴
document.onpaste = function(){ return false; };

2022-10-27  2457   php js