0

我正在尝试在所有 div 中搜索某个文本“www.url.com”

如果找到 www.url.com,我想从子表中提取表 ID。

我的html是这样的:

<div class="box" id="results">
   <div class="box-header">
      <h1>www.url.com</h1>
   </div>
   <table cellpadding="0" cellspacing="0" border="0" class="display" id="24">
      <thead>
         <tr>
            <th>col</th>
         </tr>
         <tr id="161">
            <td class="kw" style="border-left: 1px solid white;border-right: 1px solid #F4F4F4;padding: 12px 14px;position: relative;text-align: left;">111111</td>

         </tr>
      </thead>
      <tbody></tbody>
   </table>

在这种情况下,我想找到 id="24"。

这是我到目前为止所拥有的:

var foundin = $('*:contains("www.url.com")');

不知道如何获得 id :)

4

3 回答 3

3

采用:

foundin.find('table').attr('id');

如果要收集所有实例,请使用以下内容:

foundin.each(function(){
    $(this).find('table').attr('id'); // Gets the ID
    // Store it into something like an array
});
于 2012-12-21T13:20:08.893 回答
0

试试这个,如果所有表看起来都一样,这应该可以。

 $('*:contains("www.url.com")').find('table:first').attr('id');
于 2012-12-21T13:20:10.190 回答
0
var tableId = $('*:contains("www.url.com")').closest('.box').find('table').attr('id');
于 2012-12-21T13:20:17.920 回答