如何在jquery中提醒已定义的函数

时间:2015-01-29 10:13:10

标签: javascript php jquery

如何提醒已定义的功能:

function calPricing{ Text }

alert(calPricing());

它不能正常工作。

1 个答案:

答案 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();