我通过以下代码使用按钮控件并观察奇怪的行为。在我点击此按钮的页面上,它会暂时显示“未找到内容”页面,然后转到href中指定的网址。有任何想法吗?我猜'找不到内容'是指404?为什么只是简单地显示?
我的基本目标是在按下此按钮后转到我网站上的另一个页面。还有其他可以顺利运作的想法吗?
<input class="application_button" type="button" onclick="location.href='http://myurl'" value="Button text" />
答案 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">