我想在这里做一个非常简单的任务,我希望能够点击页面上的一个按钮,让它带我到另一个页面。我已经尝试过window.location.href,以及其他一些东西,它什么也没做。我尝试过不同的平台和不同的浏览器,都有相同的结果。
我知道它可以调用一个函数,但我无法加载新页面。这一切都在我的本地文件系统中,并且两个页面都处于同一级别(但我也尝试加载外部页面,如www.apple.com)。
有什么想法吗?
由于 帕特里克
答案 0 :(得分:85)
重定向页面的简单代码
<!-- html button designing and calling the event in javascript -->
<input id="btntest" type="button" value="Check"
onclick="window.location.href = 'http://www.google.com'" />
答案 1 :(得分:21)
不要滥用表格元素&lt; a&gt;元素就足够了。
<style>
/* or put this in your stylesheet */
.button {
display: inline-block;
padding: 3px 5px;
border: 1px solid #000;
background: #eee;
}
</style>
<!-- instead of abusing a button or input element -->
<a href="url" class="button">text</a>
答案 2 :(得分:17)
仅window.location = "http://wherever.you.wanna.go.com/"
,或者,对于本地链接,window.location = "my_relative_link.html"
。
您也可以在地址栏中输入它,例如, javascript: window.location = "http://www.google.com/"
。
另请注意,URL(http://
)的协议部分对于绝对链接不是可选的;省略它将使javascript假设一个相对链接。
答案 3 :(得分:4)
此处的答案可用于在同一浏览器窗口/标签页中打开页面。
但是,我希望页面在单击按钮时在新窗口/选项卡中打开。 (选项卡/窗口决定取决于用户的浏览器设置)
以下是在新标签/窗口中打开页面的工作方式:
<button type="button" onclick="window.open('http://www.example.com/', '_blank');">View Example Page</button>
它不一定是一个按钮,你可以在任何地方使用。 请注意用于在新标签/窗口中打开的 _blank 。