0

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

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

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

1 回答 1

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">
于 2013-10-01T15:32:13.937 回答