
function initBrowseCategory(){
$.ajax({
async : true, // 是否异步
type : 'Post',
url : 'getAppBrowseCategoryList.do',
data : 'rid=' + id,
dataType : 'json',
success : function(data) {
if (data.ret == "0") {
$.each(data.data, function(i, item) {
});
}
}
});
}


