从HTML文件导航到另一个

时间:2013-06-25 13:58:09

标签: html html5

我的桌面上有2个html文件(login.html& firstpage.html)。我在login.html中有一个按钮。当我按下该按钮时,我需要导航到firstpage.html屏幕。

我试过以下;我在login.html页面写了这个,但是它没有用,

<form name="myform">
<input type="button" value="Enter" width="100px" onclick="<a href ='C:\Users\Desktop\firstpage.html'</a>">
</form>

有谁可以帮我解决这个问题。谢谢

3 个答案:

答案 0 :(得分:1)

更改

中的代码
<form name="myform" action="firstpage.html">
<input type="submit" value="Enter" width="100px">
</form>

答案 1 :(得分:0)

要只链接这两个文件,您只需将它们放在同一个文件夹中,然后使用以下行:

<input type="button" value="Enter" width="100px" onclick="document.location='firstpage.html'">

您不需要表单来执行此操作。

你的onclick处理程序不需要html,只需要javascript。

你也可以这样做:

<a href="firstpage.html">Go to page</a>

答案 2 :(得分:0)

在您的代码中稍作修改

<a href ='C:\Users\documents\firstpage.html'><input type="button" value="Enter" width="100px"></input></a>

这应该有效......:)