return responseText from jQuery.get()

后端 未结 4 885
粉色の甜心
粉色の甜心 2020-12-10 03:58

I tried to do something like this :

var msg = $.get(\"my_script.php\");

I thought msg would be set to the text returned by my_script.php,i.

相关标签:
4条回答
  • 2020-12-10 04:37

    After some testing, I ended up finding a solution.

    I need the call to be synchronous, $.get shorthand function is always asynchonous, so I will need to use $.ajax, like this:

    var msg = $.ajax({type: "GET", url: "my_script.php", async: false}).responseText;
    

    I don't think there is a better way to do this, thanks for your answers.

    0 讨论(0)
  • 2020-12-10 04:37

    The response text is available in the success callback; do what you need to do with it there.

    0 讨论(0)
  • 2020-12-10 04:42

    You can always use:

    var msg;
    $.get("my_script.php", function(text) {
      msg = text;
    });
    

    If for some reason the response is text, the remote script might be changing the content-type to something like JSON, and thus jQuery tries to parse the string before outputting to you.

    0 讨论(0)
  • 2020-12-10 04:47

    The return value is simply the jqXHR object used for the ajax request. To get the response data you need to register a callback.

    $.get("my_script.php", function(data) {
      var msg = data;
      alert(msg);
    });
    
    0 讨论(0)
提交回复
热议问题