特定TR我得到這個表HTML:如何選擇基於屬性值
<table id="mytable">
<thead>
<tr role="row">
<th aria-controls="dog"></th>
<th aria-controls="cat"></th>
<th aria-controls="fish"></th>
</tr>
</thead>
</table>
,我想選擇個地方的屬性是「狗」。
我試試這個:
$("th").attr("aria-controls"="dog");
什麼是神的方式來做到這一點?
如果我可以避免循環所有的tr它會更好。
謝謝:)
你不試試這個,因爲它是一個語法錯誤。你剛剛谷歌。 – nicael