How do you handle a form change in jQuery?

后端 未结 13 2034
生来不讨喜
生来不讨喜 2020-11-28 21:18

In jQuery, is there a simple way to test if ANY of a form\'s elements have changed?

EDIT: I should have added that I only need to check on a c

相关标签:
13条回答
  • 2020-11-28 21:27

    Try this:

    <script>
    var form_original_data = $("form").serialize(); 
    var form_submit=false;
    $('[type="submit"]').click(function() {
        form_submit=true;
    });
    window.onbeforeunload = function() {
        //console.log($("form").submit());
        if ($("form").serialize() != form_original_data && form_submit==false) {
            return "Do you really want to leave without saving?";
        }
    };
    </script>
    
    0 讨论(0)
  • 2020-11-28 21:28
    var formStr = JSON.stringify($("#form").serializeArray());
    ...
    function Submit(){
       var newformStr = JSON.stringify($("#form").serializeArray());
       if (formStr != newformStr){
          ...
             formChangedfunct();
          ...
       }
       else {
          ...
             formUnchangedfunct();
          ...
       }
    }
    
    0 讨论(0)
  • 2020-11-28 21:32

    First, I'd add a hidden input to your form to track the state of the form. Then, I'd use this jQuery snippet to set the value of the hidden input when something on the form changes:

        $("form")
        .find("input")
        .change(function(){
            if ($("#hdnFormChanged").val() == "no")
            {
                $("#hdnFormChanged").val("yes");
            }
        });
    

    When your button is clicked, you can check the state of your hidden input:

    $("#Button").click(function(){
        if($("#hdnFormChanged").val() == "yes")
        {
            // handler code here...
        }
    });
    
    0 讨论(0)
  • 2020-11-28 21:38

    You can do this:

    $("form :input").change(function() {
      $(this).closest('form').data('changed', true);
    });
    $('#mybutton').click(function() {
      if($(this).closest('form').data('changed')) {
         //do something
      }
    });
    

    This rigs a change event handler to inputs in the form, if any of them change it uses .data() to set a changed value to true, then we just check for that value on the click, this assumes that #mybutton is inside the form (if not just replace $(this).closest('form') with $('#myForm')), but you could make it even more generic, like this:

    $('.checkChangedbutton').click(function() {
      if($(this).closest('form').data('changed')) {
         //do something
      }
    });
    

    References: Updated

    According to jQuery this is a filter to select all form controls.

    http://api.jquery.com/input-selector/

    The :input selector basically selects all form controls.

    0 讨论(0)
  • 2020-11-28 21:39
    $('form :input').change(function() {
        // Something has changed
    });
    
    0 讨论(0)
  • 2020-11-28 21:41

    You can use multiple selectors to attach a callback to the change event for any form element.

    $("input, select").change(function(){
        // Something changed
    });
    

    EDIT

    Since you mentioned you only need this for a click, you can simply modify my original code to this:

    $("input, select").click(function(){
        // A form element was clicked
    });
    

    EDIT #2

    Ok, you can set a global that is set once something has been changed like this:

    var FORM_HAS_CHANGED = false;
    
    $('#mybutton').click(function() {
        if (FORM_HAS_CHANGED) {
            // The form has changed
        }
    });
    
    $("input, select").change(function(){
        FORM_HAS_CHANGED = true;
    });
    
    0 讨论(0)
提交回复
热议问题