function Search_host_repair() { $.ajax({ type: "post", url: "search_host_repair.ashx", data: { "id": '123' }, //参数要对应 success: function (result) { var a = eval("(" + result + ")"); alert(a.success + "," + a.expired + "," + a.handle); } }); } function Test() { $.ajax({ type: "get", url: "search_host_repair.ashx", contentType: "application/json", data: { "id" : "123" }, //参数要对应 success: function (result) { var a = eval("(" + result + ")"); alert(a.success + "," + a.expired + "," + a.handle); } }); }
<input type="button" value="upload_location" id="upload_location" onclick="Search_host_repair()" />
<input type="button" value="test" id="test" onclick="Test()" />