“HTML -Schaltfläche mit Link” Code-Antworten

href auf einem Knopf

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

HTML -Schaltfläche Link

<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

HTML -Schaltfläche mit Link

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

Fügen Sie den Link hinter einer Schaltfläche in HTML hinzu

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

Wie mache ich einen Link einer Schaltfläche auf einer anderen Seite?

<button type="button" onclick="window.location.href='the link you want the button to take you to'">Click me</button>
Doubtful Dunlin

Ähnliche Antworten wie “HTML -Schaltfläche mit Link”

Fragen ähnlich wie “HTML -Schaltfläche mit Link”

Weitere verwandte Antworten zu “HTML -Schaltfläche mit Link” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen