“Redirect tombol HTML” Kode Jawaban

cara mengarahkan ulang tombol klik di html

<button id="myButton" class="float-left submit-button" >Home</button>

<script type="text/javascript">
    document.getElementById("myButton").onclick = function () {
        location.href = "www.yoursite.com";
    };
</script>
Nasty Narwhal

Redirect tombol HTML

You can make <button> tag to do action like this:

<a href="http://www.google.com/">
   <button>Visit Google</button>
</a>
or:

<a href="http://www.google.com/">
   <input type="button" value="Visit Google" />
</a>
It's simple and no javascript required!
Code_Breaker

Jawaban yang mirip dengan “Redirect tombol HTML”

Pertanyaan yang mirip dengan “Redirect tombol HTML”

Lebih banyak jawaban terkait untuk “Redirect tombol HTML” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya