2007年7月10日

responseXMLのデータを取得する部分で、4096バイトを超える文字列をFirefoxでは取得できませんでした。
IEでは問題ありませんでした。

xmldoc on Firefox - JavaScriptの方法で回避できました。

var xmldoc = o.responseXML;
if (typeof(xmldoc.normalize) != "undefined") {
  xmldoc.normalize();
}

Yahoo UIのConnection Managerを使用しています。
Yahoo! UI Library: Connection Manager

Tags: , , ,

コメントをどうぞ