徹底屏蔽左右鍵、不能復(fù)制
<body oncontextmenu=self.event.returnValue=false onselectstart="return false">
oncontextmenu="window.event.return&#118alue=false" 將徹底屏蔽鼠標右鍵
<body oncontextmenu="return false"> 忽視右鍵
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
<body onselectstart="return false"> 取消選取、防止復(fù)制
onpaste="return false" 不準粘貼
oncopy="return false;" oncut="return false;" 防止復(fù)制
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>不能點右鍵、不用CTRL+A、不能復(fù)制</title>
</head>
<body
onkeypress="window.event.returnValue=false"
onkeydown="window.event.returnValue=false"
onkeyup="window.event.returnValue=false"
ondragstart="window.event.returnValue=false"
onselectstart="event.returnValue=false">
</body>
試試鼠標右鍵,試試CTRL+A全選,試試鼠標拖選復(fù)制?
</body>
</html>