$. ajax 요청 형식

1187 단어 Ajax
 1 $.ajax({

 2                 url: "http://localhost:5311/UserService.asmx/GetLoginId",//   URL

 3                 type: "POST",//   get,   get      

 4                 contentType: "application/json",//

 5                 data: '{"loginId": "a"}',//action  

 6                 dataType: "json",

 7                 beforeSend:function (){

 8                     alert("    ");

 9                 },

10                 success: function (e) {

11                     window.alert("    ");

12                 },

13                 error:function  (){

14                     alert("    ");

15                 }

16             });

좋은 웹페이지 즐겨찾기