0

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

<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.43mIE 9.0.8.8112.16421Firefox version 7.0.1.

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

谢谢。

4

2 回答 2

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  | " />
    
于 2013-04-06T12:32:16.677 回答
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>
于 2013-04-06T12:28:13.593 回答