单击“getproduct”按钮时,如果产品不可用,则ajax调用将获取产品或404代码.
有任何想法吗 ?
$(function () { $("#getproduct").click(function getMyJson() { $.ajax({ type: "GET",url: "Product/GetProduct",dataType: "json",success: function (data) { //alert("succes"); $("#name").html(data.Name); $("#price").html(data.Price); },error: function () { //alert("fail"); //callback getMyJson here in 5 seconds } }); }); });