查看源代码
view-source:网站,如:view-source:https://abc.xxxxx.com/
快捷键:Ctrl+U
打开开发者模式
1、(进入开发者模式)快捷键:Ctrl+Shift+i
2、(进入选择元素模式)快捷键:Ctrl+Shift+C
3、浏览器菜单开发者工具,进入开发者工具点击控制台,输入以下内容:
// 开启右键菜单<br>document.oncontextmenu = function(){ return true; };<br>// 开启文字选择<br>document.onselectstart = function(){ return true; };<br>// 开启复制<br>document.oncopy = function(){ return true; };<br>// 开启剪切<br>document.oncut = function(){ return true; };<br>// 开启粘贴<br>document.onpaste = function(){ return true; };<br>// 开启F12键<br>document.onkeydown = function () {<br>if (window.event && window.event.keyCode == 123) {<br>event.keyCode = 0;<br>event.returnValue = true;<br>return true;<br>}<br>};<br>