我们如何在html中设置img标签中的路径?

时间:2016-03-20 09:39:09

标签: html

我只是一个html的开头,我有一个运行的apache服务器,因此我的问题是图像没有加载。

我的Apache htdocs文件夹中有一个主页,其中另一个页面关于是超链接的,现在在这个关于页面我是想加载图像但它不起作用。

这是我使用的

<img scr="C:\apache24\htdocs\COC\pictures\townhall.jpg">

为什么这不起作用。我试过了。

<img scr="http:\\localhost\COC\Pictures\townhall2.jpg">

但是没有用。

2 个答案:

答案 0 :(得分:2)

src而非scr

所以它会是:

<img src="C:\apache24\htdocs\COC\pictures\townhall.jpg" /> 
<img src="C:\apache24\htdocs\COC\pictures\townhall2.jpg" /> 

工作代码:

&#13;
&#13;
<img src="http://lorempicsum.com/futurama/350/200/1" /> 
&#13;
&#13;
&#13;

See this fiddle for an example

答案 1 :(得分:0)

您无法使用路径C:.....使用相对路径。因此,如果您的图片为C:\apache24\htdocs\COC\pictures\townhall.jpg且您的网站位于C:\apache24\htdocs,则请撰写COC/pictures/townhall.jpg作为道路。

你为什么要加载COC图像?你知道这可能是侵犯版权的行为......或者我错了吗?无论...

所以你的img标签是:

<img src="COC/pictures/townhall.jpg" alt="Townhall" /> 并且不要忘记在网址中使用/而不是\