如何在按下键盘时以所需的形式自动输入?

发布于 2025-01-09 12:20:33 字数 362 浏览 0 评论 0原文

我希望“自动移动”功能能够接受键盘上输入的任何内容,并移动到所需的输入并在其中自动输入。 “autotab”功能在各个输入字段之间切换。

当我在键盘上打字时,它应该移动到所需的输入(字母1)字段并开始在那里打字。

function automove(){
    letter1.focus()

}

function autotab(current,to){
    if (current.getAttribute && 
        current.value.length==current.getAttribute("maxlength")) {
        to.focus() 
        }
}

I want the function "automove" to take whatever is typed on the keyboard and move to the desired input and autotype in it. The "autotab" function tabs between the various input fields.

When I type on the keyboard it should move to the desired input(letter1) field and start typing there.

function automove(){
    letter1.focus()

}

function autotab(current,to){
    if (current.getAttribute && 
        current.value.length==current.getAttribute("maxlength")) {
        to.focus() 
        }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文