Ejemplo 1: href en un botón
<button onclick="window.location.href='/page2'">Continue</button>
Ejemplo 2: botón html con enlace
<form action="https://google.com">
<input type="submit" value="Go to Google" />
</form>
Ejemplo 3: botón como href
<button onclick="location.href='http://www.example.com'" type="button">
www.example.com</button>
Ejemplo 4: botón html con href
<form method="get" action="/page2">
<button type="submit">Continue</button>
</form>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)