码迷,mamicode.com
首页 > Web开发 > 详细

jquery 使用$.ajax post方法提交数据

时间:2015-06-22 16:29:14      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

$.ajax({
   type: "POST",
    dataType:"json", //如果返回数据是JSON格式,dataType请指定json
       url: "inputCodeAction",
       data: "dictType=" + $(this).attr("dictType") + "&inputText=" + obj.value + "&random=" + Math.floor(Math.random() * 10000 + 1),
       success: function(result){
alert(result);
}

});


type属性值改为"POST"时,action不会出现中文乱码问题 

dataType属性可以设置为xml,json,script,html多种返回格式!


jquery 使用$.ajax post方法提交数据

标签:

原文地址:http://blog.csdn.net/szms1/article/details/46593325

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!