jQuery disable/enable submit button

后端 未结 21 3099
难免孤独
难免孤独 2020-11-22 07:30

I have this HTML:



How can I do something li

相关标签:
21条回答
  • 2020-11-22 08:06

    To remove disabled attribute use,

     $("#elementID").removeAttr('disabled');
    

    and to add disabled attribute use,

    $("#elementID").prop("disabled", true);
    

    Enjoy :)

    0 讨论(0)
  • 2020-11-22 08:06

    eric, your code did not seem to work for me when the user enters text then deletes all the text. i created another version if anyone experienced the same problem. here ya go folks:

    $('input[type="submit"]').attr('disabled','disabled');
    $('input[type="text"]').keyup(function(){
        if($('input[type="text"]').val() == ""){
            $('input[type="submit"]').attr('disabled','disabled');
        }
        else{
            $('input[type="submit"]').removeAttr('disabled');
        }
    })
    
    0 讨论(0)
  • 2020-11-22 08:09

    This question is 2 years old but it's still a good question and it was the first Google result ... but all of the existing answers recommend setting and removing the HTML attribute (removeAttr("disabled")) "disabled", which is not the right approach. There is a lot of confusion regarding attribute vs. property.

    HTML

    The "disabled" in <input type="button" disabled> in the markup is called a boolean attribute by the W3C.

    HTML vs. DOM

    Quote:

    A property is in the DOM; an attribute is in the HTML that is parsed into the DOM.

    https://stackoverflow.com/a/7572855/664132

    JQuery

    Related:

    Nevertheless, the most important concept to remember about the checked attribute is that it does not correspond to the checked property. The attribute actually corresponds to the defaultChecked property and should be used only to set the initial value of the checkbox. The checked attribute value does not change with the state of the checkbox, while the checked property does. Therefore, the cross-browser-compatible way to determine if a checkbox is checked is to use the property...

    Relevant:

    Properties generally affect the dynamic state of a DOM element without changing the serialized HTML attribute. Examples include the value property of input elements, the disabled property of inputs and buttons, or the checked property of a checkbox. The .prop() method should be used to set disabled and checked instead of the .attr() method.

    $( "input" ).prop( "disabled", false );
    

    Summary

    To [...] change DOM properties such as the [...] disabled state of form elements, use the .prop() method.

    (http://api.jquery.com/attr/)


    As for the disable on change part of the question: There is an event called "input", but browser support is limited and it's not a jQuery event, so jQuery won't make it work. The change event works reliably, but is fired when the element loses focus. So one might combine the two (some people also listen for keyup and paste).

    Here's an untested piece of code to show what I mean:

    $(document).ready(function() {
        var $submit = $('input[type="submit"]');
        $submit.prop('disabled', true);
        $('input[type="text"]').on('input change', function() { //'input change keyup paste'
            $submit.prop('disabled', !$(this).val().length);
        });
    });
    
    0 讨论(0)
提交回复
热议问题