“Funciones del botón 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 “Funciones del botón HTML”

Preguntas similares a “Funciones del botón HTML”

Más respuestas relacionadas con “Funciones del botón HTML” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código