img 的 src 要怎么写_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:24:34
Original
941 people have browsed it

exe在最下面的 Debug 中,
main中执行chdir 切到了BS目录
在html/index.html 中想使用resouce下的一个jpg 要怎么写相对路径?


回复讨论(解决方案)

相对路径:假定你当前路径是 html/index.html  (html 对应你目录的 html)
src = "../resource/xxx.jpg";

话说你用这么高深的东西了 相对路径不会弄?

相对路径:假定你当前路径是 html/index.html  (html 对应你目录的 html)
src = "../resource/xxx.jpg";

话说你用这么高深的东西了 相对路径不会弄?



<!DOCTYPE html><html><head></head><body bgcolor="black"><p><img    src="resource/chick1.jpg" / alt="img 的 src 要怎么写_html/css_WEB-ITnose" ></p><p><img    src="../resource/chick1.jpg" / alt="img 的 src 要怎么写_html/css_WEB-ITnose" ></p><p><img    src="../../resource/chick1.jpg" / alt="img 的 src 要怎么写_html/css_WEB-ITnose" ></p><p><img    src="../../../resource/chick1.jpg" / alt="img 的 src 要怎么写_html/css_WEB-ITnose" ></p><p><img    src="../../../../resource/chick1.jpg" / alt="img 的 src 要怎么写_html/css_WEB-ITnose" ></p><script></script></body></html>
Copy after login


我两个试了各种路径, 都没有用,

Resource interpreted as Image but transferred with MIME type text/html: "http://localhost:50000/resource/chick1.jpg".

这是 chrome console  的打印



文件是没有问题的哦 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template