“enlace del botón HTML” Código de respuesta

href en un botón

<button onclick="window.location.href='/page2'">Continue</button>
STIFLER

enlace del botón HTML

<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
Arab Fire Shaman

buton html href

<!-- if you are on Window : --> 
<button onclick="window.location.href='page2.html'">
  Button
</button>

<!-- if you are on linux or macOS : -->
<button onclick="location.href='page2.html'">
  Button
</button>
Pr.Gaultier

botón HTML con enlace

<a href="https://www.google.com">
  <button>Go to Google</button>
</a>
hateschoollovecoding

Agregue el 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>
Aggressive Anaconda

enlace del botón HTML

<button onclick="window.location='(link)'"> Click this </button>
Super Shark

Respuestas similares a “enlace del botón HTML”

Preguntas similares a “enlace del botón HTML”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código