如何从ajax代码

时间:2016-07-05 10:39:31

标签: javascript ajax

我有一个网址,如#34; http://172.26.76.83/service/service.php?str"。当我运行此网址时,我正在接受"欢迎"。如何在AJAX中编写代码以获得&# 34;嗨欢迎"

2 个答案:

答案 0 :(得分:1)

你应该多搜索一下。在这个Link中你有简单的GET方法,它将如下所示:

function loadDoc() {
  var xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (xhttp.readyState == 4 && xhttp.status == 200) {
     document.getElementById("demo").innerHTML = xhttp.responseText;
    }
  };
  xhttp.open("GET", "http://172.26.76.83/service/service.php?str", true);
  xhttp.send();
}

答案 1 :(得分:0)

这可以帮到你。我无法访问您的网址,这就是为什么会出现错误博客。

$.ajax ({

  url : 'http://172.26.76.83/service/service.php?str',
  method : 'GET',
  success : function (data){
    console.log(data);
  },
  error : function(error){
    console.log("Error is --->  " + JSON.stringify(error));
  }
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>