为什么我的图片没有出现在Firefox中?

时间:2013-04-06 12:23:17

标签: html image firefox alt

所以我使用以下代码显示图像:

<img id='fb'
src="D:/Users/sel0010/Documents/Cadets/Webmaster/Photos/Icons/fblogo.png" 
width="25" 
height="25" 
alt=" Facebook  | " />
</a>

当我在Google Chrome上测试我的网站时,我可以看到它与Internet Explorer上的相同,但是当我尝试使用Firefox时,除alt=""下的内容外,没有任何内容显示。我正在Google Chrome Version 26.0.1410.43 m,IE 9.0.8.8112.16421Firefox version 7.0.1进行测试。

我真的很困惑,尤其是IE工作,所以任何帮助都会很棒,

感谢。

2 个答案:

答案 0 :(得分:2)

两个解决方案

  1. 使用相对路径:

    <img id='fb' src="Icons/fblogo.png" width="25" height="25" alt=" Facebook  | " />
    
  2. 本地图片的前缀file:///

    <img id='fb' src="file:///D:/Users/sel0010/Documents/Cadets/Webmaster/Photos/Icons/fblogo.png" width="25" height="25" alt=" Facebook  | " />
    

答案 1 :(得分:1)

你应该使用file://并在src

之前添加一个空格

变化:

<img id='fb'src="D:/Users/sel0010/Documents/Cadets/Webmaster/Photos/Icons/fblogo.png" width="25" height="25" alt=" Facebook  | " /></a>

要:

<img id='fb' src="file://D:/Users/sel0010/Documents/Cadets/Webmaster/Photos/Icons/fblogo.png" width="25" height="25" alt=" Facebook  | " /></a>