单击“取消”按钮后清除选中的复选框

clear checked check box after clicking cancel button

本文关键字:复选框 清除 取消 按钮 单击      更新时间:2023-09-26

html:

<div id="member_form" style="display:none">
    <form id="contactform"  method="post" action="." onsubmit="if($('input[name=name]').is(':checked')){return true;}else{$('#choose_warning').show();return false}">
        {% csrf_token %}
        <h2> Choose Person</h2>
        <br />
        {% if contact_list %}
        {%for contact in contact_list%}
        <input type="radio" name="name" id="contact" value="{{contact.first_name}} {{contact.last_name}}" maxlength="30" />
        {{contact.first_name|title}} {{contact.last_name}}<br />
        {% endfor %}
         <input type="hidden" name="action_type" value="" id="member_action_type" maxlength="30" />
        <p style="display:none;color:red" id="choose_warning">Please choose a contact.</p>
        <div style="width:180px;margin:20px 5px 0 10px" align="left">
            <button style="margin-right:10px;" type="button" class="close" name="cancel" class="forward backicon">
                <img src="{{ STATIC_URL }}images/button-icon-ir-back.png" width="12" height="17" alt="" />
            Cancel</button>  {% include "buttons/add.html" %}
        </div></form>

.js:

$(document).ready(function(){
         $(".add_list").click(function(){
             '''''''
         $("#member_form").fadeIn(1000);
       });
      $(".close").click(function(){
         $("#member_form").fadeOut(500);
        });
    });
我的问题是如果我选择一个单选按钮并按取消,如果我打开弹出窗口

而不刷新,所选单选按钮处于选中模式,我希望它清晰,如果我单击取消按钮并打开弹出窗口,如何在这里做。

现在它清除所有无线电:

$(".close").click(function(){
     $("input:radio").prop("checked", false);
     $("#member_form").fadeOut(500);
});

只需将此代码用于查询即可根据您的使用情况编辑按钮的名称。它会正常工作。

<!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>jQuery Check/Uncheck Radio Button</title>
    <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
        $(".check-male").click(function(){
            $("#male").prop("checked", true);
        });
        $(".check-female").click(function(){
            $("#female").prop("checked", true);
        });
          $(".cancel").click(function(){
            $("#female").prop("checked", false);
              $("#male").prop("checked", false);
        });
    });
    </script>
    </head>
    <body>
        <label><input type="radio" name="gender" id="male"> Male</label>
        <label><input type="radio" name="gender" id="female"> Female</label>
         <button type="button" class="cancel">Cancel</button>
        <p><strong>Note:</strong> Click the cancel uncheck radio button.</p>  
    </body>
    </html>