“cara mengarahkan ulang tombol klik di html” Kode Jawaban

JS OnClick Redirect

<button onclick="location.href='www.yoursite.com'">Click Me</button>
P. Tune

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 “cara mengarahkan ulang tombol klik di html”

Pertanyaan yang mirip dengan “cara mengarahkan ulang tombol klik di html”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya