html禁止右鍵方法:1、使用oncontextmenu事件,停用滑鼠右鍵的選單;2、使用onselectstart事件,禁止利用右鍵在網頁上選取內容;3、使用oncopy事件,禁止利用右鍵複製。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
oncontextmenu事件停用右鍵選單
document.oncontextmenu = function(){ event.returnValue = false; }// 或者直接返回整个事件 document.oncontextmenu = function(){ return false; }
onselectstart事件停用網頁上選取的內容
#document.onselectstart = function(){ event.returnValue = false; }// 或者直接返回整个事件 document.onselectstart = function(){ return false; }
oncopy事件停用複製
document.oncopy = function(){ event.returnValue = false; }// 或者直接返回整个事件 document.oncopy = function(){ return false; }
以上三種事件,如果只想單純的停用滑鼠右鍵,和複製貼上,還可以將它們直接寫到HTML中的body上面;
<body oncontextmenu = "return false" ></body> <body onselectstart = "return false" ></body> <body oncopy = "return false" ></body>
推薦學習:html影片教學
以上是html如何禁止右鍵的詳細內容。更多資訊請關注PHP中文網其他相關文章!