所以我尝试了这个:
input.find(" tr").each(function(){ ... });
我也试过这个:
input.find(" > tr").each(function(){ ... });
这两个都不起作用。第一个将选择任何 TR,即使它位于嵌套表下。如果表有 tbody 或类似的东西,第二个将不起作用。有什么帮助吗?
输入定义为:
var input = $(".mySelectionScope");
DOM 看起来像这样:
<div class='mySelectionScope'>
<div> // Optional
<table>
<tbody>
<tr> // Select this one
<table>
<tr> // Don't select this one
....