$.post('url后台地址',{参数键值对方式},function(data返回的值){这里去操作页面内容});
$.get("你的url",你的参数,function(data){ $("#你的div").html(data); } );