加载Ajax的html不会在Firefox中显示图像

时间:2009-08-14 13:08:26

标签: jquery ajax firefox

我用

加载了一些异步html
                    $.ajax({
                        url: target,
                        beforeSend: function() {
                        },
                        success: function(html) {
                            targetTabBox.html(html);
                        }
                    });

url:target是一个“页面”,返回一个html片段(一些文本和图像)。 targetTabBox是div

在IE中一切都很好,但在Firefox中,我不会只看到我的图像alt文本。 当我右键单击图像并执行我看到的属性时:

http://localhost:3000/Product/Slapen/Laken-en-deken/%5CFoto%5CCms%5Cgots-logo.gif 这是错的,但是:

当我用萤火虫看html时,我看到了:

<img src="\Foto\Cms\gots-logo.gif" alt="GOTS logo"/>

应该是这样!

我在这里缺少什么?

2 个答案:

答案 0 :(得分:1)

行,

它的反斜杠firefox正在拉一些rfc对我说你必须使用正斜杠,IE不关心。

<img src="\Foto\Cms\gots-logo.gif" alt="GOTS logo"/>

应该是     GOTS logo

谢谢你们: - )

猜猜我需要在Q&amp; A网站上输入此内容才能看到它。

答案 1 :(得分:0)

忘记格式化正确答案,以便将其删除:

<img src="/Foto/Cms/gots-logo.gif" alt="GOTS logo"/>

(我今天开始了)