首页 > 代码库 > jQuery radio的取值与赋值

jQuery radio的取值与赋值

 

取值:

$("input[name=‘radioName‘]:checked").val();

 赋值:

$("input[name=‘radioName‘][value=http://www.mamicode.com/2]").attr("checked",true); 

jQuery radio的取值与赋值