小记 – JS禁用鼠标右键/拖动/选择

0
1
2
3
4
5
6
7
function stop() 
{ 
return false; 
} 
document.oncontextmenu=stop;  //禁用鼠标右键
document.ondragstart=stop;  //禁止拖动
document.onselectstart=stop;  //禁止选择

HTML简洁写法:

1
<body oncontextmenu="return false" ondragstart="return false" onselectstart="return false">

发表评论

您的邮箱不会公开,当您的评论有新的回复时,会通过您填写的邮箱向您发送评论内容。 必填字段 *

为何看不到我发布的评论?

正在提交, 请稍候...