XMLHttpRequestオブジェクトreponseText値
540 ワード
var xmlHttp = createXMLHttpRequest(function(){});
executeXMLHttpRequest(xmlHttp,'',false);
xmlHttp.onreadystatechange = function() {
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
if (xmlHttp.responseText.length >10){
//
}
}
}
}
xmlHttp.reponseTexが空の時、xmlHttp.reponseText.lengthは6.原因が分かりません.すべてのXMLHttpRequest.reponseText=="とXMLHttpRequest.reponseText==nullはずっと無効です.