原型 Ajax.Updater 响应正常,但未显示在 FF 中。在 Safari 中工作

发布于 2024-08-24 23:45:20 字数 744 浏览 8 评论 0原文

我这里有一个很奇怪的问题。

我通过 Ajax.Updater 调用一些简单的代码:

new Ajax.Updater('load','http://myurl.com/demo.pl?key=demokey&param1=xyz&param2=abc',{
method:'get',
onComplete:function(transport){
alert(transport.responseText) } });

它会获取如下代码:

<img id="2009_04_15_1239786246"
    src='../pv/100/2009_04_15_1239786246-01.jpg'
    border="1"> <img
    id="2009_04_15_1239786066"
    src='../pv/100/2009_04_15_1239786066-01.jpg'
    border="1">

...等等

此代码显示在我的 Firebug 控制台中作为我的服务器响应,因此一切都应该没问题。这里完全没有错误。在 Safari 4 中工作正常。

根据 Firebug,Firefox 3.6 知道有响应,但它不会在我的 div 'load' 中显示任何内容,并且 alert(transport.responseText) 也是空的。

我不知道这里可能有什么问题。

I've got a quite strange problem here.

I'm calling some simple code via Ajax.Updater:

new Ajax.Updater('load','http://myurl.com/demo.pl?key=demokey¶m1=xyz¶m2=abc',{
method:'get',
onComplete:function(transport){
alert(transport.responseText) } });

which gets some code like this:

<img id="2009_04_15_1239786246"
    src='../pv/100/2009_04_15_1239786246-01.jpg'
    border="1"> <img
    id="2009_04_15_1239786066"
    src='../pv/100/2009_04_15_1239786066-01.jpg'
    border="1">

... and so on

This code shows up in my firebug console as my server response, so everything should be fine. No errors here at all. Works fine in Safari 4.

Firefox 3.6, according to Firebug, knows there is a response, but it won't show a thing in my div 'load' and the alert(transport.responseText) is also empty.

I have no idea what could be the problem here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-08-31 23:45:20

您在 标记 ID 的开头使用了数字,这是不正确的,可能会让某些浏览器对您不利。在这些 ID 中使用其他一些主角。

看这里:http://www.w3.org/TR/html4 /types.html#type-id

You are using numbers in the beginning of of your <img> tag ids, which is not correct and might make some browsers to turn against you. Use some other leading character in those ids.

Look here: http://www.w3.org/TR/html4/types.html#type-id

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文