我有以下标记,我想All
选中单选按钮。
<ul>
<li><input type="radio" value="All" name="Foo"/>All</li>
<li><input type="radio" value="New" name="Foo"/>New</li>
<li><input type="radio" value="Removed" name="Foo"/>Removed</li>
<li><input type="radio" value="Updated" name="Foo"/>Updated</li>
</ul>
我想通过属性匹配,但我需要匹配 2 个属性,@name='Foo'
并且@value='All'
.
像这样的东西:
$("input[@name='Foo' @value='all']").attr('checked','checked');
有人可以展示如何做到这一点吗?