我想使用 jquery css 选择器获取对具有特定文本值的元素的引用。
例子:
<table >
<tbody>
<tr>
<td>
<i>MYVAL</i> <!-- I want the reference to this element-->
</td>
</tr>
</tbody>
</table>
但我不能仅仅写就成功
$('table tbody tr td i[value="MYVAL"]').SomeFunction();
哪个是正确的语法?