日期:2014-05-16 浏览次数:20584 次
$("#butfr").click(function(){	
				var post_content = "123213423";
				$.ajax({
					url: 'cc.php',
					type: 'post',
					dataType: , text
					data: "post_content="+post_content,
					success: function(){
						alert('成功');
					},
					error: function(){
						alert('失败');
					}
				})
			});