jquery ajax提交数据的问题
我是翔子 2009-03-16 04:39:45 我在用jquery的ajax提交数据的时候,可以弹出success的对话框,但是数据库中并没有提交的数据,是哪出了什么问题呀~?
$.ajax({
url:'../Handler/ArticleHandler.ashx',
type:'POST',
timeout:'100000',
contentType:'text/html',
dataType:'html',
data:PostDate, //是一个字符串,包含了提交内容的信息,如title=....&content=....
error:function(){
alert(error);
},
success:function(data){
alert("ok"+data);
}
});