ajax屬性 data--------------20160705

weixin_30924079發表於2020-04-04
$.ajax({
    type : "get",    //這裡get和post都可以
    url : "cccccc.ccc",
    data: "name = xx & location = abc",
    success : function(){

    }
})

第二種:

$.ajax({
    type : "get",    //這裡get和post都可以
    url : "cccccc.ccc",
    data: {
              name : "xx",
              location : "abc"
    }
    success : function(){

    }
})    

第三種:  變數法

var dataJS =  {
              "name": "xx",  //屬性名打引號 類似json
              "location": "abc"
    }

$.ajax({
    type : "get",    //這裡get和post都可以
    url : "cccccc.ccc",
    data: dataJS,
    success : function(){

    }
})    

 

轉載於:https://www.cnblogs.com/hanha/p/5642909.html

相關文章