src绝对路径问题

发布于 2024-10-19 12:41:35 字数 287 浏览 5 评论 0原文

我在 C:\wamp\www\site\img 中有一个图像,我尝试在页面中显示它:

<img src="C:\wamp\www\site\img\mypicture.jpg"/>

但它不起作用。该文件实际上在那里,如果我尝试引用到它的相对路径我得到了图片

<img src="../img/mypicture.jpg">

错误在哪里?我错过了什么? 再次感谢你们!

I have an image in C:\wamp\www\site\img and i try to display it in a page with this:

<img src="C:\wamp\www\site\img\mypicture.jpg"/>

but it's not working.The file is actually there and if I try to refer to it with a relative path i got the picture

<img src="../img/mypicture.jpg">

where is the error?what am I missing??
thank you again guys!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

鸠魁 2024-10-26 12:41:35

您应该将其引用为 localhost。像这样:

You should be referencing it as localhost. Like this:

<img src="http:\\localhost\site\img\mypicture.jpg"/>

三岁铭 2024-10-26 12:41:35

<img src="file://C:/wamp/www/site/img/mypicture.jpg"/>

哆啦不做梦 2024-10-26 12:41:35

我认为因为 C 会被视为客户端电脑上的 C 驱动器,所以它不会让你这样做。如果它能做到这一点,那将是一个很大的安全漏洞。

I think because C would be seen the C drive on the client pc, it wont let you. And if it could do this, it would be a big security hole.

美人骨 2024-10-26 12:41:35

使用正斜杠。
请参阅此处的说明

Use forward slashes.
See explanation here

不念旧人 2024-10-26 12:41:35

首先在任何网络浏览器中打开图像。然后复制路径并将其添加为图像源位置,如下所示:

src="file:///C:/wamp64/www/site/img/mypicture.jpg"

First open the image in any web browser. Then copy the path and add it as image source location like this :

src="file:///C:/wamp64/www/site/img/mypicture.jpg"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文