网页怎么禁用鼠标右键菜单,防止复制、粘贴呢?用下面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; };
trx能量机器人 2026年04月01日
WPS 2026年03月28日
helloworld下载 2026年03月28日
搜狗官网 2026年03月28日
WPS 2026年03月28日
扫码二维码
获取最新动态

个人博客