1. 程式人生 > >js,文字框輸入,點回車,觸發,確定,相容IE,FF等

js,文字框輸入,點回車,觸發,確定,相容IE,FF等

<head> 
<script> 
function EnterPress(e){ //傳入 event 
var e = e || window.event; 
if(e.keyCode == 13){ 
document.getElementById("txtB").focus(); 
} 
} 
</script> 
</head> 
<body> 
<input type="text" id="txtA" onkeypress="EnterPress(event)" onkeydown="EnterPress()" /> 
<input type="text" id="txtB" /> 
</body>