我找不到任何关于使用jQuery获取总JSON记录数。
这里是返回的JSON:
{“电子邮件”:“请输入您的电子邮件。”,“密码”:“请输入密码。”}
这里是我的代码:
$(function() { $("#btnSubmit").click(function() { $.ajax({ url: "/account/signup",type: "POST",dataType: "json",data: { Email: $("#strEmail").val(),Password: $("#strPassword").val() },success: function(j) { $(".errMsg").hide(); alert(j.length); // I couldn't get the total count $.each(j,function(n) { $("#err" + n).html(j[n]); $("#err" + n).show(); }) },error: function(req,status,error) { alert(req); } }); }); });
解决方法
如果你有这样的东西:
var json = [ {a:b,c:d},{e:f,g:h,...},{..},... ]
那么,你可以做:
alert(json.length)