「ajax」XMLHttpRequestのonloadイベントを利用する
onload
受信が成功した時に呼び出されます
方法1
xhr.onload = function() {
// 処理コード
}
方法2
xhr.onreadystatechange = function() {
if(xhr.readyState === 4 && xhr.status !== 0) {
// 処理コード
}
}
Coding Changes the World
onload
受信が成功した時に呼び出されます
方法1
xhr.onload = function() {
// 処理コード
}
方法2
xhr.onreadystatechange = function() {
if(xhr.readyState === 4 && xhr.status !== 0) {
// 処理コード
}
}