如果选中无线电,则显示消息操作

If radio is checked then show a message action

我在 HTML

中有一个输入收音机
<input class="payment_processor_gocardless crm-form-radio" value="5" type="radio" id="QFID_5_payment_processor_id" name="payment_processor_id">

一般情况下收音机没有被选中。 我想做的是,每当我单击该收音机时,我都希望通过 sweetalert 显示一条消息。这是我的代码:

$('input[name=payment_processor_id]”]’).click(function()  {
    if (($("input[name=payment_processor_id]").attr("value")=="5") ) {  
          Swal.fire({
sweetalert message goes here
        });
  }
});

Sweetalert 在其他领域也能发挥作用,所以这不是我关心的问题。选择单选按钮时我无法触发它。任何帮助,将不胜感激。谢谢

您犯了一些语义错误,已对您的代码进行了修改。

$('input[name="payment_processor_id"]').click(function()  {
    if (($('input[name="payment_processor_id"]').attr("value")=="5") ) {  
          Swal.fire({
              sweetalert message goes here
        });
  }
});