$(function () {
$(".goods_type_Root").click(function () {
var cpid = $(this).attr("regs");
$.ajax({
type: "Post",
cache: false,
contentType: "application/json",
url: "/SellerRelease/GetChGoodsCategorys?r=" + Math.random(),
data: "{'cpid':" + cpid + "}",
dataType: "json",//类型
async: false,
success: function (m) {
$("#child_box").html("");
$.each(m, function (c) {
$("#child_box").append("<li>" + c.categoryName + "</li>");
});
},
error: function (e) {
}
});
});
});
json格式便利输出结果为undefined 怎么回事
先看看返回的m值,是不是object数组,不是的话c.categoryName肯定就是undefined了
没明白你的意思,也没看到json变量。
你也没有用到 ‘m’变量啊