如何使按钮将我的页面重定向到另一个页面?

2022-08-30 01:23:48

我一直在尝试以下方法:

<form action="/home" class="inline">
    <button class="float-left submit-button" >Home</button>
</form>

它似乎有效,但它转到页面“/home?

有没有更好的方法让表单中的按钮转到新位置?


答案 1

只需将事件添加到 :onclickbutton

<button onclick="location.href = 'www.yoursite.com';" id="myButton" class="float-left submit-button" >Home</button>

但是你不应该像这样内联它,而是把它放在一个JS块中,并给出一个ID:button

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

答案 2

尝试

<button onclick="window.location.href='b.php'">Click me</button>