如何提醒jQuery中定义的函数

这个问题在这里已经有了答案:

  • 我如何知道通过jQuery选择了哪个单选按钮? 29个答案

  • 您可以测试是否使用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();
    
    链接地址: http://www.djcxy.com/p/24585.html

    上一篇: How to alert the defined function in jquery

    下一篇: radio is only passing the first value