有没有办法在文本编辑中使用href到其他文档?

时间:2015-10-08 16:50:55

标签: html hyperlink href textedit

我开始使用TextEdit编写html,当我尝试使用href链接到其他文档时,它说“找不到网页的网页:file:/// Users / user / Documents /” œfile:///Users/user/Documents/helloWorld.html—。我链接的文件叫做helloWorld,所以我很确定它不是拼写错误。我该怎么做才能解决错误? 这是迄今为止的代码:

<!DOCTYPE html>
<html>
<head>
<title>About Hello World</title>
</head>
<body>
<p>About hello World</p>
<a href=‘file:///Users/user/Documents/helloWorld.html'>Home</a>
</body>
</html>

2 个答案:

答案 0 :(得分:0)

尝试通过将整个路径指向另一个文件来尝试,例如

<a href="file:///C:/Users/user/Documents/helloWorld.html">

或者如果它在你的F驱动器中那么

<a href="file:///F:/Users/user/Documents/helloWorld.html">

但请记住,如果您要与其他人共享此页面,他们当然很可能无法访问与您相同的文件路径。所以文件不会显示。

答案 1 :(得分:0)

如果您使用的是Mac,则可以运行终端,找到要链接到的文件,然后将其拖到终端。它将显示文件的目录,您可以将其复制并粘贴到href标记。