HTML'onclick'事件在转到所需的href之前显示“找不到内容”

时间:2013-10-01 15:11:32

标签: html button onclick http-status-code-404

我通过以下代码使用按钮控件并观察奇怪的行为。在我点击此按钮的页面上,它会暂时显示“未找到内容”页面,然后转到href中指定的网址。有任何想法吗?我猜'找不到内容'是指404?为什么只是简单地显示?

我的基本目标是在按下此按钮后转到我网站上的另一个页面。还有其他可以顺利运作的想法吗?

<input class="application_button" type="button" onclick="location.href='http://myurl'" value="Button text" />

1 个答案:

答案 0 :(得分:0)

试试这个。

<form action="http://myurl">
<input type="button" value="Button text">
</form>

或者这个 -

<input class="application_button" type="button" onclick="location.href('http://');" value="Button text">