为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Images do not open/show. Site works elsewhere and tryed everything

  • 3 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

I built a personal website and it works fine on every browser, except Firefox. Images do not open. But not all images - only the ones in the <body> tag. I have checked everything in the HTML file (and it is correct), but after checking the page information/ pictures source, there is a "%5C" added to original "code" (on Firefox only), which I assume it causes this problem. I have tried every possible solution, but it didn't work out. Can someone please help me? The website is: http://ssw1202356-celica.16mb.com/index.html

I built a personal website and it works fine on every browser, except Firefox. Images do not open. But not all images - only the ones in the <body> tag. I have checked everything in the HTML file (and it is correct), but after checking the page information/ pictures source, there is a "%5C" added to original "code" (on Firefox only), which I assume it causes this problem. I have tried every possible solution, but it didn't work out. Can someone please help me? The website is: http://ssw1202356-celica.16mb.com/index.html

被采纳的解决方案

The images contain a backslash instead of a forward slash as you can see in "Tools > Page Info > Media" by the presence of %5C

[1] <img src="images\toyoda.jpg">
[2] <img src="images\toyotalogo.jpg">

Firefox doesn't convert a backslash automatically to a forward slash, so you will have to change that in the page code.

<img src="images/toyoda.jpg" align="left" height="170" border="3" width="140">
<img src="images/toyotalogo.jpg" height="225" border="0" width="300">
定位到答案原位置 👍 1

所有回复 (3)

more options

选择的解决方案

The images contain a backslash instead of a forward slash as you can see in "Tools > Page Info > Media" by the presence of %5C

[1] <img src="images\toyoda.jpg">
[2] <img src="images\toyotalogo.jpg">

Firefox doesn't convert a backslash automatically to a forward slash, so you will have to change that in the page code.

<img src="images/toyoda.jpg" align="left" height="170" border="3" width="140">
<img src="images/toyotalogo.jpg" height="225" border="0" width="300">

由cor-el于修改

more options

Thank you so much! Problem solved! :)

more options

You're welcome.