我正在尝试在所有 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 :)