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

arrow
arrow
    文章標籤
    javascript enter replace press
    全站熱搜
    創作者介紹
    創作者 痞客興 的頭像
    痞客興

    痞客興的部落格

    痞客興 發表在 痞客邦 留言(0) 人氣()