我似乎无法为此标签找到正确的 jquery 选择器:
HTML:
<div class="span4 span4-mod">
<div class="well well-mod">
<h4 class="DomainDescription">Iniz LAX1</h4>
<span class="btn-block">
<button></button>
</span>
<form action="pinfo.php" method="post">
<input type="hidden" value="">
<button>History</button>
</form>
Port Status<br />
<span class="portstatus porton">21</span>
<table class="table" style="margin-top: 10px;">
<tbody>
<tr>
<td><strong>Distro:</strong></td>
<td class="showdistro">Debian 7.1</td>
</tr>
<tr>
<td><strong>Online since: </strong></td>
<td class="showonline">2 Days 10:29</td>
</tr>
</tbody>
</table>
</div>
我正在尝试搜索“DomainDescription”类,然后在“showonline”类中搜索HTML,并操作后者。
我正在寻找兄弟(table)>child(tbody)>child(tr)>child(td)的关系
尽我所能,我似乎无法为这种关系找到合适的选择器。
我是这样开始的:
$('.DomainDescription').each(function () {
var PrintedUptime=$(this).siblings().children(".showonline").html();
alert (PrintedUptime);
});
正确的选择器应该是什么?