javascript - js怎么让输入框自动获取焦点?
我想大声告诉你
我想大声告诉你 2017-06-12 09:31:40
0
2
765

element.focus()没用,没有光标闪动的聚焦效果,那该怎么做?

<input autofocus="autofocus" id="input">
//js
document.getElementById('input').focus();//我执行这句语句的时候光标没有自动聚焦,还是blur状态
我想大声告诉你
我想大声告诉你

全部回复(2)
Ty80

autofocus HTML5
This Boolean attribute lets you specify that a form control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control. Only one form element in a document can have the autofocus attribute, which is a Boolean. It cannot be applied if the type attribute is set to hidden (that is, you cannot automatically set focus to a hidden control).

给输入框加上这个属性就行了
mdn链接


另外不明白为什么 element.focus()会没有用。不贴出代码无法解决,随手写了一下测试是有用的

Ty80

trigger,模拟点击

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!