jQuery経由でラジオボタンを選択するにはどうすればいいですか?
$("#1").find("Radio1").prop('checked', true);
$("#2").find("Radio1").prop('checked', true);
<div id="1" cvalue='false'>
Are you a student ?
<br> <input type="radio" name="RadioB1" id="Radio1" value="1">
<label for="Radio1">Yes</label><br>
<input type="radio" name="RadioB1" id="Radio2" value="2">
<label for="Radio2">No</label>
</div>
<br/>
<div id="2" cvalue='false' >
Do you study in a university ?
<br>
<input type="radio" name="RadioB1" id="Radio3" class="ui-state-default ui-corner-all" value="1">
<label for="Radio1">Yes</label><br>
<input type="radio" name="RadioB1" id="Radio4" class="ui-state-default ui-corner-all" value="2">
<label for="Radio2">No</label>
</div>
https://jsfiddle.net/chcnd9tg/1/ –
ありがとうございます、私たちは、同じラジオボタンIDを別のdiv内にあります。複数のdivがあるので、私はすべてのdiv内のidを変更する必要があります –
これのためにjQueryまたはJavascriptは必要ありません。あなたのhtmlを ' –