Ejemplo 1: ubicación de javascript onclick href
onclick="location.href="https://foroayuda.es/unit_01.htm""
Ejemplo 2: href en un botón
<button onclick="window.location.href="https://foroayuda.es/page2"">Continue</button>
Ejemplo 3: enlace de botón html
<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
Ejemplo 4: onclick href
onclick="location.href="http://www.hyperlinkcode.com/button-links.php""
Ejemplo 5: agregar un enlace detrás de un botón en html
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<form>
<input type="button" onclick="window.location.href="https://www.w3docs.com";" value="w3docs"/>
</form>
</body>
</html>
Ejemplo 6: botón como href
<button onclick="location.href="http://www.example.com"" type="button">
www.example.com</button>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)