我有两个名为home.html
和options.html
的html文件。在options.html
中,单击提交按钮后,我现在位于我的网络服务器的cgi-bin
目录中。我的anchor
代码的格式应该是什么,以便我可以返回home.html
页面?
这是代码:
<a href='localhost/cgi-bin'>GO BACK</a>
我遇到的错误是:
The requested URL /cgi-bin/localhost/home.html was not found on this server.
答案 0 :(得分:1)
我不确定我是否了解您的问题,但这可能会有效:
<a href='/home.html'>GO BACK</a>
答案 1 :(得分:0)
你可以使用:
<a href='javascript:history.back(-1)'>GO BACK</a>
答案 2 :(得分:0)
使用
<a href='localhost/cgi-bin/home.html'>GO BACK</a>
答案 3 :(得分:0)
如果两个页面都在同一目录中,您可以执行类似这样的操作
<a href="home.html">GO BACK</a>
否则给出绝对路径
<a href="http://webserver/cgi-bin/home.html" >GO BACK</a>
发布两个文件的完整目录结构,以便我们可以找到相对路径。
答案 4 :(得分:0)
我找到了答案:
<a href="http://localhost/home.html">GO BACK</a>