1

我正在使用 JavaScript/jQuery 来检测浏览器是否支持nth-of-typeCSS3 伪类。在 CSS 中分配了一个 5px padding-left(参见下面的代码),如果 JS/jQ 可以通过$(document).ready().

Chrome 26、IE9、Win Safari 5.1 和 Opera 12 一切正常,所有这些都检测到 5px 设置。但是,确实支持的 Firefox 20nth-of-type将设置显示padding-left为 0px,因此错误地未能通过测试。为什么nth-of-type只有 Firefox 检测失败?

示例代码。(从我的生产代码中剥离出来。如果您想尝试它,也可以在http://jsfiddle.net/jma7777/ZnzBN/1/padding-left获得。打开控制台查看检测结果。)

<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Pseudo Class Nth-of-Type Detector</title>
<style>
#checkPsdoClass1 tr.rows:nth-of-type(odd) {
  padding-left: 5px;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function() {
  // Checks for style assigned to :nth-of-type(odd)
  if ($('#checkPsdoClass2').css('padding-left') !== '5px') {
    $('#pseudoClassDemo').html('<p>Your browser does not support the <code>:nth-of-type</code> pseudo-class.');
  }
  console.log($('#checkPsdoClass2').css('padding-left'));  // Modern browsers log 5px except Firefox which logs 0px
  console.log($('#checkPsdoClass1 tr.rows:nth-of-type(odd)').css('padding-left'));  // Modern browsers log 5px except Firefox which logs 0px
  console.log($('tr.rows:nth-of-type(odd)').css('padding-left'));  // Modern browsers log 5px except Firefox which logs 0px
});
</script>
</head>

<body>
<table id="checkPsdoClass1"><tr id="checkPsdoClass2" class="rows"><td><p id="checkPdsoElmnt">This table is used to test if the browser supports the nth-of-type pseudo-class.</p></td></tr></table>
</body>

</html>
4

1 回答 1

3

我认为问题在于 Firefox 没有对表格行元素应用填充;详情见MDN

[填充] 适用于除 table-row-group、table-header-group、table-footer-group、table-row、table-column-group 和 table-column 之外的所有元素

尝试将填充分配给第一个子单元格:

#checkPsdoClass1 tr.rows:nth-of-type(odd) td:first-child {
  padding-left: 5px;
}
于 2013-05-09T21:55:35.430 回答