板邓:jquery 获取 radio单选框的值

获取单选框的值有三种方式:

1、$('input:radio:checked').val();
2、$("input[type='radio']:checked").val();
3、$("input[name='rd']:checked").val();
板邓个人博客:http://8dseo.com
原文地址:https://www.cnblogs.com/xbdeng/p/6010512.html