Skip to content

Instantly share code, notes, and snippets.

@Barneybook
Created February 3, 2013 09:13
Show Gist options
  • Select an option

  • Save Barneybook/4701010 to your computer and use it in GitHub Desktop.

Select an option

Save Barneybook/4701010 to your computer and use it in GitHub Desktop.
將程式碼貼在<body>標籤裡面
onselectstart="return false;" (關閉滑鼠選取功能)
oncontextmenu="window.event.returnValue=false;" (不顯示滑鼠右鍵選單)
若將上一句再加點變化,就變成按右鍵時會出現顯示警語
oncontextmenu="window.event.returnValue=false;alert('版權所有')"
”版權所有”的字樣可以改為你所要顯示的文字
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment