禁止IE的backspace键,但输入文本框时不禁止

在使用框架的时候,有时候按退格会有问题,需要禁止退格键:
window.document.onkeydown = function (){
		if(window.event.keyCode == 8) {
		
		 if (window.event.srcElement.tagName.toUpperCase()!="INPUT" && window.event.srcElement.tagName.toUpperCase()!="TEXTAREA" && window.event.srcElement.tagName.toUpperCase()!="TEXT")  
    	{  
      		//window.event.keyCode=0;   
     		 return false; 
    	}   
			
		}
	
	};

你可能感兴趣的:(文本框)