JQuery对radio的操作

一、根据值选择单选框的操作:

$("input[name='tempProduct.holdPmInfo.isSupportSubsidy'][value='1']").attr("checked",true);

二、获取选中单选框的值:

$("input:radio[name='tempProduct.holdPmInfo.isSupportSubsidy']:checked").val();

相关推荐