87,993
社区成员
发帖
与我相关
我的任务
分享
new Ajax.Request('book.php', {
method: 'get',
parameters: '...',
onSuccess:function(response){
var content = response.responseXML.getElementsByTagName('content')[0].firstChild.nodeValue;
alert(content.length); //这里显示长度为4千左右,丢失部分数据
return;
}
});