在 Firefox 中对文本区域调用 $().focus 无法按预期工作
我在这里重现了该问题: http://jsfiddle.net/Rc52x/5/
如果您使用 Chrome 时,点击Click here!
,文本区域将获得焦点,您可以按预期开始输入。
如果您在使用 Firefox 时单击它(我现在使用的是 3.6.15),则文本区域不会获得焦点,并且键入不会执行任何操作。
到底是什么?
I've reproduced the problem here: http://jsfiddle.net/Rc52x/5/
If you click on Click here!
while using Chrome, the textarea gains focus and you can start typing as expected.
If you click on it while using Firefox (I'm using 3.6.15 right now), the textarea does NOT gain focus and typing does nothing.
What the heck?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要防止链接的默认操作: http://jsfiddle.net/JAAulde/Rc52x/7 /
Firefox 正在跟踪它,导致文本区域在获得焦点后失去焦点。
You need to prevent the default action of the link: http://jsfiddle.net/JAAulde/Rc52x/7/
Firefox is following it causing the textarea to lose focus after gaining.
这有效:
返回 false 阻止导航到“#...”
This works:
return false prevents from navigating to "#..."