Home > Article > Web Front-end > How to add disable attribute to elements in jquery
In jquery, you can use the attr() method to add the disable attribute to an element, with the syntax "$(selector).attr("disabled",true);" or "$(selector).attr(" disabled","disabled");".
The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.
The disabled attribute specifies that the element should be disabled. Disabled elements are neither available nor clickable.
jquery method to add disable attribute to element
attr() method can set the attribute value of the selected element.
There are two ways to add the disable attribute to an element using the attr() method
$(selector).attr("disabled",true); $(selector).attr("disabled","disabled");
Example:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ // $("input").attr("disabled",true); $("input").attr("disabled","disabled"); }); }); </script> </head> <body> <input type="text" /> <br><br> <button>增加disable属性</button> </body> </html>
Related video tutorial recommendations: jQuery Tutorial(Video)
The above is the detailed content of How to add disable attribute to elements in jquery. For more information, please follow other related articles on the PHP Chinese website!