HTML事件屬性onkeydown

2018-01-05 13:58 更新

HTML事件屬性onkeydown


觸發(fā) onkeydown 屬性事件當(dāng)用戶按下一個(gè)鍵。

與onkeydown事件相關(guān)的事件順序:

  • onkeydown
  • onkeypress
  • onkeyup


HTML5中的新功能

沒有。

句法

<element onkeydown="script">

支持的標(biāo)簽

所有HTML元素,EXCEPT:

<base>, 
<bdo>, 
<br>, 
<head>, 
<html>, 
<iframe>, 
<meta>, 
<param>, 
<script>, 
<style>, 
<title>


瀏覽器兼容性

onkeydown Yes Yes Yes Yes Yes

例子

<!DOCTYPE html>
<html>
<body>

<input type="text" onkeydown="myFunction()">

<script>
function myFunction() {
    console.log("pressed a key");
}
</script>

</body>
</html>

Click to view the demo

實(shí)施例2

下面的代碼在body標(biāo)簽中為key down事件添加事件處理程序輸出從鍵代碼轉(zhuǎn)換的鍵字符。

<html>
<head>
<script type="text/javascript">
  function press() {
    var oTextbox = document.getElementById("txt1");
    oTextbox.value += "\n>" + String.fromCharCode(event.keyCode);
  }
</script>
</head>
<body onkeydown="press()">
  <P>
    <textarea id="txt1" rows="15" cols="50"></textarea>
  </p>
</body>
</html>

Click to view the demo

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)