HTML頁面禁止選擇 頁面禁止複製 頁面禁止右鍵

2021-06-06 08:58:47 字數 728 閱讀 7351

html頁面內容禁止選擇、複製、右鍵

剛在乙個看乙個站點的源**的的時候發現的,其實原來真的很簡單

關鍵就在  

οncοntextmenu='return false'

οndragstart='return false'

onselectstart ='return false'

οnselect='document.selection.empty()'

οncοpy='document.selection.empty()'

onbeforecopy='return false'

οnmοuseup='document.selection.empty()'

乙個更簡單的方法就是在中加入如下的**,這樣滑鼠的左右鍵都失效了.

topmargin="0" οncοntextmenu="return false" οndragstart="return false" onselectstart ="return false" οnselect="document.selection.empty()" οncοpy="document.selection.empty()" onbeforecopy="return false" οnmοuseup="document.selection.empty()"

1.禁止網頁另存為:在後面加入以下**:

2.禁止網頁內容複製.貼上:在中加入以下**:

HTML頁面禁止選擇 頁面禁止複製 頁面禁止右鍵

轉至 html頁面內容禁止選擇 複製 右鍵 剛在乙個看乙個站點的源 的的時候發現的,其實原來真的很簡單 關鍵就在 nc ntextmenu return false ndragstart return false onselectstart return false nselect document...

HTML頁面禁止選擇 頁面禁止複製 頁面禁止右鍵

html頁面內容禁止選擇 複製 右鍵 剛在乙個看乙個站點的源 的的時候發現的,其實原來真的很簡單 關鍵就在 nc ntextmenu return false ndragstart return false onselectstart return false nselect document.se...

HTML頁面內容禁止選擇 複製 右鍵

關鍵就在 oncontextmenu return false ondragstart return false onselectstart return false onselect document.selection.empty oncopy document.selection.empty ...