HTML 链接不起作用
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/15636150/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
HTML Links are not working
提问by Rob Barton
I am currently creating a website, and for some reason a simple task linking to another web page is not working. When I try and link something I get
我目前正在创建一个网站,但由于某种原因,链接到另一个网页的简单任务不起作用。当我尝试链接一些东西时,我得到了
This webpage is not found. No webpage was found for the web address: C:\me\me\me etc etc".
找不到此网页。未找到该网址的网页:C:\me\me\me 等”。
All I am trying to do is link a work to another page on my web page. Here is my code:
我要做的就是将作品链接到我网页上的另一个页面。这是我的代码:
<a href="C:\users\rob\website\page.html">page link</a>
I have also just tried linking google and amazon and get the same results.
我也刚刚尝试链接谷歌和亚马逊并获得相同的结果。
回答by Anirudh Ramanathan
<a href="file://C:\users\rob\website\page.html"> page link </a>
Also,
You cannotload local resources using file://
if the page is hosted on a webserver. That would be a security issue and is hence, forbidden.
此外,如果页面托管在webserver上,则无法加载本地资源。这将是一个安全问题,因此被禁止。file://
Your script console will, in that case also contain:
在这种情况下,您的脚本控制台还将包含:
Not allowed to load local resource: file:///C:/users/rob/website/page.html
回答by fcm
You're not closing the quote on the link. Try <a href="URL goes here" > page link </a>
您没有关闭链接上的报价。尝试<a href="URL goes here" > page link </a>
For instance, <a href="http://www.google.com/" > Google </a>
例如, <a href="http://www.google.com/" > Google </a>
Also, remember that "C:..." is not a web address, if you want to test locally, try using the file://
prefix.
另外,请记住“C:...”不是网址,如果您想在本地进行测试,请尝试使用file://
前缀。
For instance, <a href="file://C:\me\me\me\page.html" > My Page</a>
例如, <a href="file://C:\me\me\me\page.html" > My Page</a>
回答by Daanvn
You forgot the second "
你忘了第二个“
try this:
尝试这个:
<a href="C:\users\rob\website\page.html"> page link </a>
回答by Guru Prasath
try this,
尝试这个,
<a href="file:///C|\users\rob\website\page.html" > page link < /a>