element.focus()没用,没有光标闪动的聚焦效果,那该怎么做?
<input autofocus="autofocus" id="input">
//js
document.getElementById('input').focus();//我执行这句语句的时候光标没有自动聚焦,还是blur状态
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
给输入框加上这个属性就行了
mdn链接
另外不明白为什么 element.focus()会没有用。不贴出代码无法解决,随手写了一下测试是有用的
trigger,模拟点击