1.5 ajax流程-数据的获取

2017-11-10  本文已影响25人  小豌豆书吧

数据的获取 10:59

//3.设置响应HTTP请求状态变化的函数;
xhr.onreadystatechange = function() {
    
    if ( xhr.readyState == 4 ) {
        if ( xhr.status == 200 ) {
            alert( xhr.responseText );
        } else {
            alert('出错了,Err:' + xhr.status);
        }
    }
    
}

说明:

请求状态监控

上一篇下一篇

猜你喜欢

热点阅读