“botón con href” Código de respuesta

href en un botón

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

botón como href

<button onclick="location.href='http://www.example.com'" type="button">
         www.example.com</button>
Strange Skylark

botón HTML con enlace

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

href en un botón

<!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

botón HTML como enlace

<button class="btn btn-success" onclick="location.href='http://google.com';"> Google</button>
#open link from button
Horrible Hamerkop

botón con href

onClick={() => {window.location.href="https://www.golfballs.com/"}}
Jittery Jaguar

Respuestas similares a “botón con href”

Preguntas similares a “botón con href”

Más respuestas relacionadas con “botón con href” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código