为什么href无法在本地站点上运行?

时间:2012-09-28 15:51:01

标签: javascript asp.net html permissions

我想添加一个指向本地html网站的新链接到网站上的菜单列表。主要网站是aspx,但我正在处理html副本。引用的链接指向我本地计算机上的html网站。

<li><a href="C:/Users/User/Desktop/Consulting.html"><b>Custom Solutions</b><br />
Custom Software Applications and Solutions</a></li>

如果我用www.google.com替换href,链接指向谷歌。但它不适用于本地网站。 C:/Users/User/Desktop/Consulting.html是来自aspx网站的下载网站。

由于拒绝权限或者本地网站来自aspx网站,href是否无法正常工作?

2 个答案:

答案 0 :(得分:2)

那应该是

<a href="file:///C:/Users/User/Desktop/Consulting.html"></a>

仅当您正在查看的HTML文件位于本地计算机上时才会起作用。

答案 1 :(得分:1)

尝试:

<li><a href="file:///C:/Users/User/Desktop/Consulting.html"><b>Custom Solutions</b><br />
Custom Software Applications and Solutions</a></li>