1. 程式人生 > >html取消滑鼠右擊事件

html取消滑鼠右擊事件

在某些場合我們需要取消滑鼠右鍵點選事件,在 body元素上 新增 這段程式碼即可  取消 body 標籤上的滑鼠 右擊事件

document.body.oncontextmenu = function (){ return false }