如何从网站本身打开网络/文件相关网页

时间:2010-07-07 11:33:28

标签: html

我的网页上有以下标记(比如test.html):

<html>
<body>
    <a id="link1" target = "_new" href="http://www.yahoo.com">Go to Yahoo</a>
    <a id="link2" target = "_new" href="http://www.google.com">Go to Google</a>
    <a id="link3" target = "_new" href="file://///server01/localWebPage.html">Go to Local webpage</a>
 </body>    
<html>

这将打开一个选项卡/窗口(并重新使用_new目标),当通过File | Open | locate to test.html location打开网页时,它可以正常工作。但是当它使用Web服务器(例如IIS)运行时。通过http://localhost/test.html运行此功能不适用于localWebPage.html。

有任何建议使这项工作?

由于

1 个答案:

答案 0 :(得分:0)

不确定您想要什么,但如果您想在新标签/窗口中打开页面,请使用target="_blank",但是如果您希望它在同一窗口中打开,请忽略target="_blank" 1}}部分来自链接。