Simplest way to write this AJAX call

后端 未结 1 844
刺人心
刺人心 2020-12-12 07:25

I need to send an ajax request to a webserver \"http://examples.com/ajax\" the response will be the html of a

and it will be inserted to an existing
相关标签:
1条回答
  • 2020-12-12 08:14
    var req = new XMLHttpRequest();
    
    req.onreadystatechange = function() {
      //Is request finished? Does the requested page exist?
      if(req.readyState==4 && req.status==200) {   
        //Your HTML arrives here
        alert(req.responseText);  
      }
    }
    
    req.open("GET","http://examples.com/ajax.php",true)  //true indicates ASYNCHRONOUS
    req.send(null);
    

    This solution uses get, so you've got to add variables using ? and & to your URL (e.g. http://examples.com/ajax.php?foo=bar&blah=blee.

    If you want to do it using post, run a few with get and then this article is useful.

    0 讨论(0)
提交回复
热议问题