El selector :disabled se utiliza para seleccionar todos los elementos de formulario deshabilitados.
Sintaxis:
$(":disabled")
Parámetro:
- :selector deshabilitado: Se utiliza para seleccionar elementos HTML que soporten el atributo deshabilitado. es decir, etiqueta de botón, etiqueta de entrada, etiqueta de optgroup, etiqueta de opción, etiqueta de selección y etiqueta de área de texto.
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>:disabled Selector</title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function() { $(":disabled").css( "background-color", "green"); }); </script> </head> <body> <center> <form action="#"> <h1>Welcome to GeeksforGeeks!. </h1> <div> Text : <input type="text" name="text" disabled="disabled"> <br/> <br/> Select : <select> <option>1</option> <option>2</option> <option>3</option> <option>4</option> </select> </div> </form> </center> </body> </html>
Producción:
Ejemplo-2:
<!DOCTYPE html> <html> <head> <title>:disabled Selector </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function() { $(":disabled").css( "background-color", "green"); }); </script> </head> <body> <center> <form action="#"> <h1>Welcome to GeeksforGeeks!. </h1> <div> Text : <input type="text" name="text" value="GeeksforGeeks"> <br/> <input type="submit" name="submit" value="submit" disabled="disabled"> </div> </form> </center> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por AdeshSingh1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA