/*ajax查询*/ $(Jquery).click(function () { ajax_function({ type: "GET", url: "/WC_Index/Ajax_Index", data: "name=" + txtname.val(), dataType: "json", success: ????????这个我不会封装 }); // });
//ajax function ajax_function(obj) { $.ajax({ type: obj.type, url: obj.url, data: obj.data, dataType: obj.dataType, success: obj.success }); } //ajax success function ajax_success(obj) { $("#listTabe li").remove(); var resultHtml = ''; $.each(obj.data, function (i, n) { resultHtml += '<li><a id="MeauID" href="/WC_Index/UrlJquery/' + n.CustomerID + '">' + n.Customer_Name + '</a></li>'; }); $("#listTabe").html(resultHtml); }
还有这样封装我觉得还是有 type: url
ajax_function({ type: "GET", url: "/WC_Index/Ajax_Index", data: "name=" + txtname.val(), dataType: "json", success: ????????这个我不会封装
封装后如何去掉这些呢?第一次搞这个封装 所以 有点不会 大侠们
天涯尽头无女友
皈依舞
相关分类