文章列表
1. 屏蔽鼠标右键
将彻底屏
<body oncontextmenu="window.event.returnValue=false">
</body>
可用于Table
<table border oncontextmenu="return false;">
</table>
2. 取消选取、防止复制
<body onselectstart="return false;">
</body>
3. 不准粘贴
onpaste="return false; ...
- 2008-10-07 10:24
- 浏览 554
- 评论(0)