jquery ajax get example

后端 未结 4 1044
独厮守ぢ
独厮守ぢ 2020-12-16 15:51

At the moment I\'m using the post method like this

$.ajax({
    type: \"POST\",
    url: \"Servicename.asmx/DoSomeCalculation\", 
  data: \"{param1ID:\"+ par         


        
4条回答
  •  隐瞒了意图╮
    2020-12-16 16:07

    To answer your first point, no: GET and POST are independent of synchronous / asynchronous.

    You can use the boolean async method to control this.

提交回复
热议问题