如何让 -moz-user-focus:ignore 工作?
我的理解是,当使用 -moz-user-focus:ignore
(see doc),则 Firefox 在按 Tab 键切换时应跳过该元素。但是,请尝试:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<form action="/">
<input type="text" value="First">
<input type="text" value="Second" style="-moz-user-focus: ignore">
<input type="text" value="Third">
</form>
</body>
</html>
- 第一次点击选项卡:您位于第一个文本字段。
- 第二次点击 Tab:尽管有
-moz-user-focus:ignore
,但您仍位于第二个文本字段。我在这里错过了什么吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mozilla bug 库中似乎有一个涵盖此问题的 bug。在修复此错误之前,我们可以使用
tabindex="-1"
而不是 CSS 作为解决方法。It seems there is a bug covering this in the Mozilla bug base. Until this bug is fixed, we can use
tabindex="-1"
instead of CSS as a workaround.