日期:2014-05-16 浏览次数:20796 次
//一级商品分类
$.ajax({
url: "GoodsParentType",
dataType: "json",
async: true,
success: function (json){
$.each(json,function(i){
$("<dt id="+json[i].EPP_ID+">"+json[i].EPP_NAME+"</dt>").appendTo("#type");
})
$("#type dt").bind("click",function(){
var str=$(this).attr("id");
$(this).toggle(
function () {
$(this).show();
},
function () {
$(this).hide();
}
);
$(this).unbind("click");
//二级商品分类
$.ajax({
url:"GetCategory?parent_id="+str+"",
dataType: "json",
async:true,
success:function(CategoryJson){
$.each(CategoryJson,function(i){
$("<dd>"+CategoryJson[i].epc_Name+"</dd>").insertAfter("#"+str+"")
})
}
})
})
}
})