无法从Windows上的本地文件夹访问HTML

时间:2013-11-23 19:34:52

标签: html image

下面的源字段有什么问题?我只是想从我的本地系统显示图像。

<img id="image1" src="file:///C:/cf-logo.jpg" class="img-polaroid"><br>

1 个答案:

答案 0 :(得分:0)

资产(图片,css文件,javascript文件等)必须位于您的网络根目录(或下方),才能在浏览器中查看。

<!-- image is in the root web directory -->
<img id="image1" src="/cf-logo.jpg" class="img-polaroid"><br>

解决此问题的唯一方法是调用一个服务器端脚本来获取文件并为您返回。

<!-- image served by a script that can access the file directory -->
<img id="image1" src="/image.php?i=cf-logo.jpg" class="img-polaroid"><br>