当点击一个链接
我有一组单选按钮,并在点击一个链接我要执行的组中的一个单选按钮......在这种情况下,一个一个id =“IndividualPD”执行单选按钮点击。当点击一个链接
这是单选按钮
<div class="btn-group" id="performanceRadioBtns" data-toggle="buttons" style="margin- top: 20px; float: right"> <label class="btn btn-primary active">
<input type="radio" name="options" id="PDStatus">
PD Status
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="PDRating">
PD Rating
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="IndividualPD">
Individual PD
</label>
</div>
这是什么,我都试过了jQuery的HTML。
$("#performanceRadioBtns").find("#IndividualPD").find("input[name='options']").trigger("change");
但不激活按钮。
也许对如何“触发”在点击一个链接
回答:
如果你想检查的单选按钮这个按钮,你需要使用prop("checked", true)
以及你选择改变的帮助:
$("#performanceRadioBtns").find("#IndividualPD").prop("checked", true);
因为#IndividualPD
已经是input
元素
以上是 当点击一个链接 的全部内容, 来源链接: utcz.com/qa/260020.html