“jQuery ajax Get” Ответ

ajax получить запрос

$.ajax({
        url: "https://app.asana.com/-/api/0.1/workspaces/",
        type: 'GET',
        dataType: 'json', // added data type
        success: function(res) {
            console.log(res);
            alert(res);
        }
    });
SeriousMonk

jQuery ajax Get

$.ajax({
    	url: "www.site.com/page",
    	success: function(data){ 
    	    $('#data').text(data);
    	},
    	error: function(){
    		alert("There was an error.");
    	}
    });
Dr. Hippo

Сделайте Ajax запрос Post jQuery

$.ajax({
  method: "POST",
  url: "some.php",
  data: { name: "John", location: "Boston" }
})

Better Bison

Ajax получить метод в jQuery

    $.get("demo_test.asp", function(data){ //change demo_test.asp to your server route
      alert("Data: " + data);
    });
Beautiful Buzzard

Ответы похожие на “jQuery ajax Get”

Вопросы похожие на “jQuery ajax Get”

Больше похожих ответов на “jQuery ajax Get” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования