“Cómo agregar función al botón en html” Código de respuesta

Funciones del botón HTML

<script>
 function myFunction() {
   alert("ALERT");
 }
</script>
<button onclick="myFunction">Click</button>
Lava

Cómo agregar función al botón en html

<script>
 function myFunction() {
   alert("ALERT");
 }
</script>
<button onclick="myFunction()">Click</button>
MrStonkus

Respuestas similares a “Cómo agregar función al botón en html”

Preguntas similares a “Cómo agregar función al botón en html”

Más respuestas relacionadas con “Cómo agregar función al botón en html” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código