recherche

Maison  >  Questions et réponses  >  le corps du texte

html - ajax请求中使用同步通信javascript是卡在哪一步?

var xhr = new XMLHttpRequest();

xhr.open('get','xx.xx',false);
xhr.onreadyStateChange = function(){
 if(xhr.status == 200 && xhr.readyState == 4) {
   console.log('finish');
 }
}
xhr.send(null);
console.log('test');


是卡在send之后吗?也就是finish出来之后才出来test

PHP中文网PHP中文网2817 Il y a quelques jours244

répondre à tous(2)je répondrai

  • PHP中文网

    PHP中文网2017-04-10 17:42:49

    先出来 test 再出来 finish

    répondre
    0
  • PHPz

    PHPz2017-04-10 17:42:49

    xhr.open('get','xx.xx',true);

    试试,呵呵,无效不要钱

    répondre
    0
  • Annulerrépondre