Ejemplo 1: redireccionamiento del botón html
For button redirection you can use below code:
Using these two type <button> and <input> tag:
<a href="http://www.google.com/">
<button>Visit Google</button>
</a>
or:
<a href="http://www.google.com/">
<input type="button" value="Visit Google" />
</a>
<!--
I hope it will help you.
Namaste
-->
Ejemplo 2: redireccionamiento de JavaScript
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
Ejemplo 3: redireccionamiento onclick de js
<button onclick="location.href="www.yoursite.com"">Click Me</button>
Ejemplo 4: redireccionamiento con javascript
window.location.replace('http://mywebsite.com/home.html');
Ejemplo 5: cómo abrir una nueva página html al hacer clic en el botón en javascript
<button id="myButton" class="float-left submit-button" >Home</button>
<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
location.href = "www.yoursite.com";
};
</script>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)