标签: javascript html
我有一个输入,当focus时,会更改type属性的值。
focus
type
input.on('focus', () => input.attr('type', newThing))
这会阻止移动浏览器上的键盘拉起来。您必须再次触摸输入才能显示键盘。
我尝试使用jQuery' input.focus()但是如果输入已经成为焦点,它就什么都不做。
input.focus()