$.post() 提交表单
$.post("url",$(this).closest('form').serializeArray(),function(data){
if(data.code==100){
//alert("提示: 申请成功");
}else if(data.code==110){
}else{
}
},"json");
$.get() 异步刷新页面
$.get("url",{},function(data){
if(data.code==100){var dataStr='';
if(data.seller!=null && data.seller.length>0){
$('.bus-top-tb').children("li").remove(); //删除 li 标签
//$('.bus-top-tb').empty();
dataStr += '<li class=" ">'
+'<div class=" ">'
+ s.nickName
+'</div>'
+'<div class=" ">'
+ s.amount+'件'
+'</div>'
+'<div class=" ">'
+s.PayPrice + '元'
+'</div>'
+'<div class=" ">'
+s.city
+'</div>'
+'</li>';
});
}
$("#bus-top-tb").append(dataStr); // 加入到 ul 标签
}
},'json');