标签:ons orm png query 提交 inpu log com strong
action属性规定提交表单时,向何处发送表单数据
只要name一样,就是一组,即一组中只能选择一个。
<input type="radio" id="radio1" name="group1" /> radio1
<input type="radio" id="radio2" name="group1" /> radio2
<input type="radio" id="radio3" name="group1" /> radio3
使用jquery可以很方便的做好,先选择group,然后过滤出checked的,如下:
var group1 = $("[name='group1']").filter(':checked');
console.log(group1.attr('id'));
选中其中的一个节点
使用jquery设置checked属性
$('#radio2').attr('checked','checked');
标签:ons orm png query 提交 inpu log com strong
原文地址:https://www.cnblogs.com/ssgao/p/8868317.html