El atributo de aplazamiento de HTML es un atributo booleano que se utiliza para especificar que el script se ejecuta cuando la página ha terminado de analizarse. Este atributo solo funciona con scripts externos.
Aplicable:
<script>
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML defer Attribute </title> </head> <body style="text-align:center;"> <h1 style="color:green"> GeeksForGeeks </h1> <h2> HTML defer Attribute </h2> <script id="myGeeks" type="text/javascript" src="my_script.js" defer> </script> <br> <button type="button" onclick="myFunction()"> Submit </button> </body> </html>
Script externo: my_script.js
function myFunction() { alert("Script works"); }
Salida:
Antes de hacer clic:
Después de hacer clic:
Navegadores compatibles: los navegadores compatibles con HTML defer Attribute se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- safari de manzana
- Ópera
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