我有一组单选按钮,我想将选中的属性添加到其中一个。这是我的代码:
<input type="radio" name="radioButton" id="rd1">
<input type="radio" name="radioButton" id="rd2">
<input type="radio" name="radioButton" id="rd3">
<input type="radio" name="radioButton" id="rd4">
<input type="radio" name="radioButton" id="rd5">
<script>
$('input[name=slider]:nth-child(3)').prop('checked', true);
</script>
我用 .attr('checked', 'checked') 测试了脚本。但脚本无法正常工作。我怎么了?