ajax
dalong3333
这个作者很懒,什么都没留下…
展开
-
jquery的ajax()函数传值中文乱码解决方法介绍
jquery的ajax()函数传值中文乱码解决方法介绍,需要的朋友可以参考下 复制代码 代码如下: $.ajax({ dataType : ‘json',type : ‘POST',url : ‘http://localhost/test/test.do',data : {id: 1, type: ‘商品'},success : function(data){ } } ); ...原创 2016-07-04 16:42:25 · 184 阅读 · 0 评论 -
Ajax的三种实现及JSON解析
本文主要是比较三种实现Ajax的方式 1、 prototype.js 2、 jquery1.3.2.min.js 3、 json2.js [code="java"]后台处理程序(Servlet),访问路径servlet/testAjax: package ajax.servlet; import java.io.IOException; import java.io...原创 2016-07-04 16:57:58 · 102 阅读 · 0 评论 -
ajax详解
[code="java"]1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分浏览器支持。 3.timeout: 要求为Number类型的参数,设置请求超时时间(毫秒)。此设置将覆盖$.a...原创 2015-09-16 10:14:40 · 70 阅读 · 0 评论 -
jQuery的deferred对象详解
[code="java"]function getDatas(layerId){ var query = main.querys[layerId]; if(undefined == query){ console&&console.log(layerId + "未设置查询参数"); return; } var dfd = $.Deferred(); setTime...原创 2015-11-17 09:15:53 · 97 阅读 · 0 评论