function getList() { jQuery.ajax({ type: " get " , data:{action: " query " }, url: " MobileBindAjax.ashx " , dataType: " json " , success: function (reslut) { jQuery.each(reslut, function (i, n) { // 属性 n.Company }); }, error: function (XmlHttpRequest,textStatus, errorThrown) { alert(XmlHttpRequest.responseText); } }); }