我的理解是,在元素上使用-moz-user-focus: ignore
(see doc)时,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"/>
</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>
-moz-user-focus: ignore
,您仍在第二个文字字段中。我在这里错过了什么吗?