“tombol HTML dengan tautan” Kode Jawaban

href pada tombol

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

tautan tombol 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

tombol HTML dengan tautan

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

Tambahkan tautan di belakang tombol di 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

bagaimana cara membuat tautan tombol pergi pada halaman yang berbeda

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

Jawaban yang mirip dengan “tombol HTML dengan tautan”

Pertanyaan yang mirip dengan “tombol HTML dengan tautan”

Lebih banyak jawaban terkait untuk “tombol HTML dengan tautan” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya