$.ajax() 例子

前端之家收集整理的这篇文章主要介绍了$.ajax() 例子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

$.ajax({
type: "POST",
url: urlString,
data: { formaaqq: 'tt' },
dataType: "json",
success: function(data) {
alert("dd");
},
error: function(){
}

});

参数参考地址:

http://www.runoob.com/jquery/ajax-ajax.html

http://blog.sina.com.cn/s/blog_4f925fc30100la36.html

猜你在找的Ajax相关文章