gpt4 book ai didi

javascript - 在 html 中使用箭头键浏览文本框?

转载 作者:行者123 更新时间:2023-11-28 04:08:57 27 4
gpt4 key购买 nike

如问题所述,如何在 HTML 中使用箭头键浏览文本框?除了尽可能使用 jQuery。也许使用 JS?或者使用 HTML、CSS 之类的?谢谢!

<body>
<form>
<input type="text"> <br>
<input type="text"> <br>
<input type="text">
</form>


</body>

最佳答案

如果你会使用 jQuery,你可以尝试做这样的事情吗?

$('form').bind('keypress', function(event) {
if(event.which === 38) { //up
$(':focus').next().focus();
}
else if(event.which === 40) { //down
$(':focus').prev().focus();
}
});

不确定如何将其转换为纯 js

关于javascript - 在 html 中使用箭头键浏览文本框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42816888/

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