La propiedad deshabilitada Input FileUpload en HTML DOM se usa para establecer o devolver si un campo de carga de archivos debe estar deshabilitado o no .
Un campo deshabilitado es inutilizable y no se puede hacer clic. Es un atributo booleano y se usa para reflejar el atributo HTML deshabilitado. Por lo general, se representa en color gris de forma predeterminada en todos los navegadores.
Sintaxis:
- Devuelve la propiedad deshabilitada:
fileuploadObject.disabled
- Establezca la propiedad deshabilitada:
fileuploadObject.disabled=true|false
Valores de propiedad:
- true: Define que el campo FileUpload está deshabilitado
- false: Tiene un valor por defecto. Define que el campo FileUpload no está deshabilitado
Valor de retorno: Devuelve un valor booleano que representa que el campo Input FileUpload está deshabilitado o no.
Ejemplo-1: Devolver la propiedad FileUpload
<!DOCTYPE html> <html> <head> <title> DOM Input FileUpload disabled Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <input type="file" id="myFile" disabled="true"> <p id="demo"> </p> <button onclick="myFunction()"> Click </button> <script> function myFunction() { var x = document.getElementById( "myFile").disabled; document.getElementById( "demo").innerHTML = x; } </script> </center> </body> </html>
Salida:
Antes de hacer clic:
Después de hacer clic:
Ejemplo-2: establecer la propiedad FileUpload
<!DOCTYPE html> <html> <head> <title> DOM Input FileUpload disabled Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <input type="file" id="myFile"> <p id="demo"> </p> <button onclick="myFunction()"> Try it </button> <script> function myFunction() { var x = document.getElementById( "myFile").disabled = "true"; document.getElementById( "demo").innerHTML = x; } </script> </center> </body> </html>
Salida:
Antes de hacer clic:
Después de hacer clic:
Navegadores compatibles:
- Firefox de Google
- Mozilla Firefox
- Borde
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por Vijay Sirra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA