好的。我用HTML编码,我已经陷入了困境。我有3个文件:file4.html(主要),buy.html和CSS.css,我正在试图弄清楚我如何在file4.html上建立一个带我到buy.html的链接。编辑:如何将buy.html添加到同一目录?
答案 0 :(得分:0)
你只是这样做:
<a href="filepath">click me</a>
如果你曾经把它放在网站上,请确保你将链接更新为不是文件路径,并将其作为网址。
请注意,您的主html
文件应为index.html
答案 1 :(得分:0)
您可以在file4.html
中添加指向文件名的链接,如下所示:
<a href="buy.html">Link</a>
这当然只有当它们都在同一目录中时才有效,否则你必须指定相对路径。
答案 2 :(得分:0)
此示例将在新的浏览器窗口/选项卡中打开链接的文档:
<a href="http://www.example.com/" target="_blank" title="Visit My Page">Visit My Page</a>
你可以使用target =“_ top”来突破框架:
<a href="http://www.example.com/html/file4.html" target="_top" title="Visit My Page">Visit My Page</a>
有用的提示部分
然后,在同一页面中添加指向书签的链接(“有用的产品部分”):
<a href="#products" title="Visit the Useful products Section">Visit the Useful products Section</a>
或者,从其他页面添加指向书签的链接(“有用的提示部分”): 实施例
<a href="file4.html#products" title="Visit the Useful products Section">Visit the Useful products Section</a>
-
<a href="page2.html" title="Link">Link</a>
如果page2.html
与文件夹处于同一级别,则路径为:
<a href="../page2.html" title="Link">Link</a>
答案 3 :(得分:0)
从您的问题来看,您似乎想从当前页面跳转到buy.html,即file4.html。一个简单的锚标记,其中href设置为相对路径(如果buy.html与当前dir中的dir相同或任何一个)或绝对路径(如果它存在于完全不同的dir结构中)
例如
<a href="buy.html">Click to go Buy.html</a>
答案 4 :(得分:0)
使用<a href="buy.html">Click link here</a>
href部分是它将引导您的页面,此处的点击链接(或您想要调用它的任何部分)是网页上显示的实际链接。
如果文件都在同一文件夹中,则这种方式是正确的,否则您必须具有.html文件的文件路径