gpt4 book ai didi

javascript - jquery keypress 事件对象 keyCode for firefox 问题?

转载 作者:可可西里 更新时间:2023-11-01 02:18:17 25 4
gpt4 key购买 nike

FireFox 的 jQuery 按键事件为事件对象提供了加密的 keyCode 属性在 String.fromCharCode(e.keyCode) 转换之后,但在 Chrome 中运行完美。

以下是javascript代码:

<!-- #booter and #text are ids of html element textarea -->

<script type="text/javascript">
$(function(){
$('#booter').keypress(function(e){
var input = $(this).val() + String.fromCharCode(e.keyCode);
$('#text').focus().val(input);
return false;
});
});
</script>

最佳答案

你应该在 Firefox 中使用 e.charCode

$("#booter").keypress(function(e){
var code = e.charCode || e.keyCode;
var input = $(this).val() + String.fromCharCode(code);
$('#text').focus().val(input);
return false;
});

在这里试试:

http://jsfiddle.net/REJ4t/

附言如果你想知道为什么会这么乱:http://www.quirksmode.org/js/keys.html

关于javascript - jquery keypress 事件对象 keyCode for firefox 问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6869996/

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