JQuery中_Radio、DropDownList、Checkbox选择控件的处理
摘要:Radio 1.获取选中值,三种方法都可以: $('input:radio:checked').val(); $("input[type='radio']:checked").val(); $("input[name='rd']:checked").val(); 2.设置第一个Radio为选中值: $('input:radio:first').attr('checked', 'checked'); 或者 $('input:radio:first'
阅读全文
posted @ 2014-03-01 23:53