function getOs(){
 	var OsObject = "";
 	if (navigator.userAgent.indexOf("MSIE") > 0) {
 		return "MSIE";
 	}
 	if (isFirefox = navigator.userAgent.indexOf("Firefox") > 0) {
 		return "Firefox";
 	}
 	if (isSafari = navigator.userAgent.indexOf("Safari") > 0) {
 		return "Safari";
 	}
 	if (isCamino = navigator.userAgent.indexOf("Camino") > 0) {
 		return "Camino";
 	}
 	if (isMozilla = navigator.userAgent.indexOf("Gecko/") > 0) {
 		return "Gecko";
 	}
 }

 function forbid(){
		if(getOs() == 'MSIE'){
			if(event.keyCode!=46){if(event.preventDefault)event.preventDefault();else event.returnValue=false;}
		}
	}
:onkeydown => "forbid();", :oncontextmenu => 'forbid();'

相关文章:

  • 2021-11-18
  • 2022-12-23
  • 2022-01-22
  • 2022-12-23
  • 2022-12-23
  • 2021-11-25
  • 2022-12-23
  • 2021-11-28
猜你喜欢
  • 2022-12-23
  • 2022-01-17
  • 2022-02-10
  • 2021-12-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案