6

如何使用 jquery 选择器仅选择具有 d 类的表。由于某种原因,此代码将无法正常工作...

var dTableTags = $(".d table");

示例表将是...

<table id="thetable" class="d">
  <thead>
    <tr><th>Column 1 header</th><th>Column 2 header</th></tr>
  </thead>
  <tbody>
    <tr><td>Column 1 data</td><td>Column 2 data</td></tr>
  </tbody>
</table>
4

2 回答 2

17

您的选择器错误;试试吧$("table.d")

jQuery 文档没有直接解释这一点,它遵循更全面的W3C CSS选择器文档。

于 2012-11-08T18:10:23.913 回答
3

您正在尝试搜索d 类内部的, 这是错误的..

将您的选择器更改为此

$("table.d");   // Because the table has the class d
于 2012-11-08T18:12:53.447 回答