Para definir un script del lado del cliente en HTML5, podemos hacer una etiqueta <script> o agregar un archivo de script externo mediante el atributo src al archivo HTML. La etiqueta <script> contiene el JavaScript que se agregará para las secuencias de comandos del lado del cliente.
Sintaxis:
HTML
<!DOCTYPE html> <html> <body> <h1>Welcome To GFG</h1> <p id="id1"> Default code has been loaded into the Editor. </p> <script> document.getElementById("id1").innerHTML= "Welcome to GeeksForGeeks" </script> </body> </html>
index.html
<!DOCTYPE html> <html> <body> <h2>External JavaScript</h2> <p id="id1"> This is before you click the button </p> <button type="button" onclick="clickMe()"> Click Me </button> <script src="main.js"></script> </body> </html>
main.js
function clickMe() { document.getElementById("id1").innerHTML = "This is after you click the button"; }
Publicación traducida automáticamente
Artículo escrito por sahithya3098 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA