ラジオボタンのグループがあり、そのうちの1つにチェック済み属性を追加したいと思います。これは私のコードです:
<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')を使用してスクリプトをテストしました。しかし、スクリプトは正しく機能しません。何が悪いの?