<html>
<head>
<title>使用enter鍵替代某個按鈕</title>
<script language="JavaScript">
function keyLogin(){
if (event.keyCode==13) //enter的鍵值為13
document.getElementById("input1").click(); //觸動按鈕的點擊
}
</script>
</head>
<body onkeydown="keyLogin();">
<input id="input1" value="按鈕" type="button" onclick="alert('按鈕已按!')">
</body>
</body>
</html>
文章標籤
全站熱搜
留言列表