• <tfoot id='BQusl'></tfoot>

      <small id='BQusl'></small><noframes id='BQusl'>

      <legend id='BQusl'><style id='BQusl'><dir id='BQusl'><q id='BQusl'></q></dir></style></legend>
    1. <i id='BQusl'><tr id='BQusl'><dt id='BQusl'><q id='BQusl'><span id='BQusl'><b id='BQusl'><form id='BQusl'><ins id='BQusl'></ins><ul id='BQusl'></ul><sub id='BQusl'></sub></form><legend id='BQusl'></legend><bdo id='BQusl'><pre id='BQusl'><center id='BQusl'></center></pre></bdo></b><th id='BQusl'></th></span></q></dt></tr></i><div id='BQusl'><tfoot id='BQusl'></tfoot><dl id='BQusl'><fieldset id='BQusl'></fieldset></dl></div>
          <bdo id='BQusl'></bdo><ul id='BQusl'></ul>

      1. jQuery复选框更改和单击事件

        时间:2023-09-05
            <tbody id='Kxt4y'></tbody>
          <legend id='Kxt4y'><style id='Kxt4y'><dir id='Kxt4y'><q id='Kxt4y'></q></dir></style></legend>

                <i id='Kxt4y'><tr id='Kxt4y'><dt id='Kxt4y'><q id='Kxt4y'><span id='Kxt4y'><b id='Kxt4y'><form id='Kxt4y'><ins id='Kxt4y'></ins><ul id='Kxt4y'></ul><sub id='Kxt4y'></sub></form><legend id='Kxt4y'></legend><bdo id='Kxt4y'><pre id='Kxt4y'><center id='Kxt4y'></center></pre></bdo></b><th id='Kxt4y'></th></span></q></dt></tr></i><div id='Kxt4y'><tfoot id='Kxt4y'></tfoot><dl id='Kxt4y'><fieldset id='Kxt4y'></fieldset></dl></div>
              • <small id='Kxt4y'></small><noframes id='Kxt4y'>

                <tfoot id='Kxt4y'></tfoot>
                • <bdo id='Kxt4y'></bdo><ul id='Kxt4y'></ul>
                  本文介绍了jQuery复选框更改和单击事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  $(document).ready(function() {
                    //set initial state.
                    $('#textbox1').val($(this).is(':checked'));
                  
                    $('#checkbox1').change(function() {
                      $('#textbox1').val($(this).is(':checked'));
                    });
                  
                    $('#checkbox1').click(function() {
                      if (!$(this).is(':checked')) {
                        return confirm("Are you sure?");
                      }
                    });
                  });

                  <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
                  <input type="checkbox" id="checkbox1"/><br />
                  <input type="text" id="textbox1"/>

                  这里 .change() 用复选框状态更新文本框值.我使用 .click() 来确认取消选中的操作.如果用户选择取消,复选标记将恢复,但 .change() 在确认之前触发.

                  Here .change() updates the textbox value with the checkbox status. I use .click() to confirm the action on uncheck. If the user selects cancel, the checkmark is restored but .change() fires before confirmation.

                  这会使事情处于不一致的状态,并且在选中复选框时文本框会显示为 false.

                  This leaves things in an inconsistent state and the textbox says false when the checkbox is checked.

                  如何处理取消并保持文本框值与检查状态一致?

                  How can I deal with the cancellation and keep textbox value consistent with the check state?

                  推荐答案

                  在 JSFiddle 中测试并且确实如此您要什么.这种方法具有在单击与复选框关联的标签时触发的额外好处.

                  Tested in JSFiddle and does what you're asking for.This approach has the added benefit of firing when a label associated with a checkbox is clicked.

                  更新答案:

                  $(document).ready(function() {
                      //set initial state.
                      $('#textbox1').val(this.checked);
                  
                      $('#checkbox1').change(function() {
                          if(this.checked) {
                              var returnVal = confirm("Are you sure?");
                              $(this).prop("checked", returnVal);
                          }
                          $('#textbox1').val(this.checked);        
                      });
                  });
                  

                  原答案:

                  $(document).ready(function() {
                      //set initial state.
                      $('#textbox1').val($(this).is(':checked'));
                  
                      $('#checkbox1').change(function() {
                          if($(this).is(":checked")) {
                              var returnVal = confirm("Are you sure?");
                              $(this).attr("checked", returnVal);
                          }
                          $('#textbox1').val($(this).is(':checked'));        
                      });
                  });
                  

                  这篇关于jQuery复选框更改和单击事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:什么时候应该使用 jQuery 的 document.ready 函数? 下一篇:当元素添加到页面时如何通知我?

                  相关文章

                  最新文章

                  <legend id='sCg3m'><style id='sCg3m'><dir id='sCg3m'><q id='sCg3m'></q></dir></style></legend>

                  • <bdo id='sCg3m'></bdo><ul id='sCg3m'></ul>

                    1. <tfoot id='sCg3m'></tfoot>
                    2. <small id='sCg3m'></small><noframes id='sCg3m'>

                      <i id='sCg3m'><tr id='sCg3m'><dt id='sCg3m'><q id='sCg3m'><span id='sCg3m'><b id='sCg3m'><form id='sCg3m'><ins id='sCg3m'></ins><ul id='sCg3m'></ul><sub id='sCg3m'></sub></form><legend id='sCg3m'></legend><bdo id='sCg3m'><pre id='sCg3m'><center id='sCg3m'></center></pre></bdo></b><th id='sCg3m'></th></span></q></dt></tr></i><div id='sCg3m'><tfoot id='sCg3m'></tfoot><dl id='sCg3m'><fieldset id='sCg3m'></fieldset></dl></div>