Home | Mirror | Search

7. 頁面內容安全

7.1. 禁止滑鼠右鍵

修改body標籤,加入onContextMenu="return false" onSelectStart="return false"。

			
<body bgColor="#FFFFFF" onContextMenu="return false" onSelectStart="return false">
			
			

7.2. 禁止複製剪切 及粘貼

禁止拷貝文字:

			
<input name="textfield" type="text" value="不能複製裡面的字" oncopy="return false;" oncut="return false;" onpaste="return false">
			
			
comments powered by Disqus