如何在按下键盘时以所需的形式自动输入?
我希望“自动移动”功能能够接受键盘上输入的任何内容,并移动到所需的输入并在其中自动输入。 “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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论