我有这段代码:
<input type="checkbox" name="checkbox" id="radio1" class="radio" / value="1" />
我尝试使用jQuery:
$('#radio1').value=1;
这是对的吗?
答案 0 :(得分:1)
只是为了向OP展示正确的HTML:
<input type="checkbox" name="checkbox" id="radio1" class="radio" value="1" />
<强> JQuery的:强>
$('#radio1').val(1);