Ajax submit data

 $.ajax({
                cache: true,//Whether to cache
                type: "GET",//Request type
                url: "Delete",//Request address
                data: { "id": id, "pid": pid, "PageNumber ": PageNumber },//Parameter (json format)
                async: false,//Whether it is asynchronous
                error: function (request) {
                  //failure
                },
                success: function (data) {
                  //success    
                }
  });

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326109910&siteId=291194637