gpt4 book ai didi

javascript - 如果我在 Keydown 事件中设置断点,我键入的键将不会附加到文本框

转载 作者:行者123 更新时间:2023-11-29 19:21:03 25 4
gpt4 key购买 nike

这是我的测试页。

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.js"></script>
<script type="text/javascript">
$(function ()
{
$("#myInput").keydown(function ()
{
return; //(X)
});
});
</script>
</head>
<body>
<input type="text" id="myInput" />
</body>
</html>

javascript 不应干扰用户输入,但如果我打开开发人员控制台并在 (X) 处的 Keydown 事件中设置断点,我键入的键将不会附加到文本框。在 Chrome 44.0.2403.155 m 和 Firefox 39.0.3 中也会发生同样的情况,但 IE 10 不会。

这是已知功能还是错误?我错过了什么吗?

I typed "1" into the text box, the break point is hit.图 1:我在文本框中输入“1”,断点被击中。

I then click Continue, the "1" I typed doesn't show in the text box.图 2:然后单击“继续”,我键入的“1”没有显示在文本框中。

最佳答案

删除返回语句。

$("#myInput").keydown(function (e) {
console.log( e.type );
} );

没有值的 return 语句返回 undefined,jQuery 将其解释为 false。当您在 jQuery 事件处理程序中返回 false 时,就像您调用了:

e.preventDefault();
e.stopPropagation();

这两行将停止浏览器对事件的默认 react ,即将键的值放入输入中。

关于javascript - 如果我在 Keydown 事件中设置断点,我键入的键将不会附加到文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33044607/

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