如何防止带有“overflow-y:scroll”的框窃取 Firefox 上选项卡的焦点?
考虑一个包含以下代码的页面:
<!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"/>
<style type="text/css">
.steal-focus { overflow-y: scroll }
</style>
</head>
<body>
<form action="/">
<input type="text" value="First">
<div class="steal-focus">Content</div>
<input type="text" value="Second">
</form>
</body>
</html>
- 在 Firefox 上加载此页面。
- 第一次点击选项卡:焦点转到第一个文本字段。
- 第二次点击 Tab:由于
overflow-y:scroll
,焦点转到而不是第二个文本字段。
此行为是 Firefox 所独有的:在 IE、Safari 或 Chrome 上不会发生这种情况。我该如何解决这种行为(对我来说这听起来像是 Firefox 的 bug)?我希望选项卡跳过
,即使它有 overflow-y:scroll
。Consider a page with the following code:
<!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"/>
<style type="text/css">
.steal-focus { overflow-y: scroll }
</style>
</head>
<body>
<form action="/">
<input type="text" value="First">
<div class="steal-focus">Content</div>
<input type="text" value="Second">
</form>
</body>
</html>
- Load this page on Firefox.
- Hit tab a first time: the focus goes to the first text field.
- Hit tab a second time: the focus goes to the
<div>
instead of the second text field, because of theoverflow-y: scroll
.
This behavior is unique to Firefox: this doesn't happen on IE, Safari, or Chrome. How can I get around this behavior, which sounds like a Firefox bug to me? I'd like the tab to skip over the <div>
even if it has an overflow-y: scroll
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
tabIndex
属性 控制 Tab 跳转的项目顺序。像这样:Use the
tabIndex
attribute to control the order of items that Tab jumps through. Like this: