jQuery获取选中的radio值
//页面跳转
function gotoUrls(){
var matureDateDeadLineId = $("input[name='matureDate']:checked").val();
var url = pcs.common.path+'/admin/mlhsign/mlhexpectedreturn?id='
+$('#id').val()+'&isWaitCheck='+$('#isWaitCheck').val()+'&productName='+"${productName}"
+'&payAmount='+$('#payAmount').val()+'&startRateDate='+$('#startRateDate')+'&productId='
+$('#productId').val() + '&deadlineId='+matureDateDeadLineId;
location.href = url;
}