天天看點

js禁止滑鼠右鍵和禁止選中複制

禁止滑鼠右鍵

1.禁止指定元素

document.getElementById("active-intro").oncontextmenu = function () {
                event.returnValue = false;
            }
           

2.禁止整個頁面

document.oncontextmenu = function () {
                event.returnValue = false;
            }
           

禁止選中複制

1.禁止指定元素

document.getElementById("active-intro").onselectstart = function() {
        	event.returnValue = false
        }
           

2.禁止整個頁面

document.onselectstart = function() {
        	event.returnValue = false
        }
           

繼續閱讀