Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

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.