Quantcast
Channel: Shiitake's tumblr.
Viewing all articles
Browse latest Browse all 46471

"これで、 var xhr = new XMLHttpRequest; xhr.open(“GET”, url, true); xhr.onreadystatechange = function()..."

$
0
0

これで、

var xhr = new XMLHttpRequest; xhr.open(“GET”, url, true); xhr.onreadystatechange = function() { switch (xhr.readyState) { case xhr.UNSENT: // 0 case xhr.OPENED: // 1 case xhr.HEADER_RECEIVED: // 2 case xhr.LOADING: // 3 return; case xhr.DONE: // 4 // … } }; xhr.send(null);

というように、readyStateの値をプロパティを使って表せるようになった。



- Firefox Nightly:: XMLHttpRequest の readyState 値 - hogehoge @teramako (via otsune)

Viewing all articles
Browse latest Browse all 46471

Trending Articles