赞
踩
- //屏蔽F12
- document.onkeydown = function(){
- if(window.event && window.event.keyCode == 123) {
- //将当前窗口跳转置空白页
- window.location="about:blank";
- event.keyCode=0;
- event.returnValue=false;
- }
- }
- //屏蔽右键菜单
- document.oncontextmenu = function (event){
- return false;
- }
- //屏蔽粘贴
- document.onpaste = function (event){
- return false;
- }
- //屏蔽复制
- document.oncopy = function (event){
- return false;
- }
- //屏蔽剪切
- document.oncut = function (event){
- return false;
- }
- //屏蔽选中
- document.onselectstart = function (event){
- return false;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。