Home  >  Article  >  Web Front-end  >  img 的 src 要怎么写_html/css_WEB-ITnose

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

WBOY
WBOYOriginal
2016-06-21 09:24:34941browse

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>


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

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

这是 chrome console  的打印



文件是没有问题的哦 

Statement:
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