日期:2014-05-16 浏览次数:20733 次
$.ajax({
type:"post",//请求方式
url :"/action.do",
dataType: "json",
data : { },
success : function(result){
if(result == 'success') {
alert('成功');
} else {
alert('失败');
}
}
});
$.ajax({
type:"post",//请求方式
url :"/action.do",
// dataType: "json",
dataType: "text",//设置为text或者不设置
data : { },
success : function(result){
if(result == 'success') {
alert('成功');
} else {
alert('失败');
}
}
});