日期:2014-05-16  浏览次数:20475 次

$.ajax
$("#butfr").click(function(){
var post_content = "123213423";
$.ajax({
   url: 'cc.php',
   type: 'post',
   dataType: post_content, 
   data: 10,
   success: function(){
alert('成功');
   },
   error: function(){
alert('失败');
   }
})
 });


求指点,如何才能让他正确。。。我没弄过这个的实例。。~~大神在那里
------解决方案--------------------
$("#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('失败');
}
})
});