欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js文本框輸入點(diǎn)回車觸發(fā)確定兼容IE、FF等

 更新時間:2013年11月19日 17:15:44   作者:  
js文本框輸入點(diǎn)回車觸發(fā)確定兼容IE、FF等,下面有個不錯的示例,感興趣的朋友可以參考下
復(fù)制代碼 代碼如下:

<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>

相關(guān)文章

最新評論