原型 Ajax.Updater 响应正常,但未显示在 FF 中。在 Safari 中工作
我这里有一个很奇怪的问题。
我通过 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) } });
它会获取如下代码:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在
标记 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