如何提醒已定义的功能:
function calPricing{ Text }
alert(calPricing());
它不能正常工作。
答案 0 :(得分:0)
您可以测试是否使用jQuery检查特定的一个,如下所示:
if ($("#radio1").prop("checked")) {
// do something
}
// OR
if ($("#radio1").is(":checked")) {
// do something
}
// OR if you don't have ids set you can go by group name and value
// (basically you need a selector that lets you specify the particular input)
if ($("input[name='radioGroup'][value='1']").prop("checked"))
您可以按如下方式获取组中当前已选中的值:
$("input[name='radioGroup']:checked").val();