jquery怎样实现ajax
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery怎样实现ajax相关的知识,希望对你有一定的参考价值。
参考技术A 一般用$.get()函数或者$.post()函数即可,源生的ajax函数设置项太多。 参考技术B $.ajax(url : "$contextPath/xxx.do",
cache : false,
async : true,
type : "POST",
dataType : 'json/xml/html',
success : function (result)
tables=eval(result);
); 参考技术C $.ajax(
url : "xxx.do",
cache : false,
async : true,
type : "POST",
dataType : 'json/xml/html',
success : function (result)
tables=eval(result);
); 参考技术D $.get(url,参数,function (data,textStatus)
data:返回的值
这里面具体处理返回值
);
以上是关于jquery怎样实现ajax的主要内容,如果未能解决你的问题,请参考以下文章