gpt4 book ai didi

javascript - 如何使用 Javascript 知道按下的键?

转载 作者:行者123 更新时间:2023-12-02 19:05:22 24 4
gpt4 key购买 nike

Possible Duplicate:
js: how to find out what character key is pressed?

我想知道如何在按键时生成事件并仅使用 JavaScript 指定按下哪个键。

最佳答案

<script type="text/javascript">
function myKeyPress(e){

var keynum;

if(window.event){ // IE
keynum = e.keyCode;
}else
if(e.which){ // Netscape/Firefox/Opera
keynum = e.which;
}
alert(String.fromCharCode(keynum));
}
</script>


<form>
<input type="text" onkeypress="return myKeyPress(event)" />
</form>

引用自How to find out what character key is pressed?

关于javascript - 如何使用 Javascript 知道按下的键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14351856/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com