博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
20151211jquery ajax进阶代码备份
阅读量:6154 次
发布时间:2019-06-21

本文共 1795 字,大约阅读时间需要 5 分钟。

//数据处理		$('form input[type=button]').click(function() {		//json处理        /*$.ajax({			type:'POST',			url:'test.json',			dataType:'json',			data:$('form').serialize(),				success: function(response,status,xhr){					alert(response[0].url);					}			});			*/						//本地获取jsonp.php成功			/*$.ajax({				type:'POST',				url:'jsonp.php',				dataType:'json',				success: function(response,status,xhr){					alert(response.a);					}							});*/									//跨域获取jsonp.php,失败			/*$.ajax({				type:'POST',				url:'http://www.li.cc/jsonp.php',				dataType:'json',				success: function(response,status,xhr){					alert(response.a);					}							});*/			//本地获取jsonp2.php成功			/*$.getJSON('jsonp2.php?callback=?',function(response){				alert(response.a);				});*/								//跨域,远程,成功			/*$.getJSON('http://www.li.cc/jsonp2.php?callback=?',function(response){				alert(response.a);				});*/								/*$.ajax({				type:'POST',				url:'jsonp2.php',				dataType:'jsonp',				success: function(response,status,xhr){					alert(response.a);					}							});*/												//jqXHR对象			//jqXHR就是$.ajax 返回的对象			/*var jqXHR=$.ajax({			type:'POST',			url:'user.php',			data:$('form').serialize()			});*/			//alert(jqXHR);			/*jqXHR.success(function(response){				alert(response);								});*/		/*jqXHR.done(function(response){			alert(response+'1');			}).done(function(response){				alert(response+'2');				});//可以连缀操作						jqXHR.done(function(response){			alert(response+'3');			});*/												var jqXHR=$.ajax('t1.php');			var jqXHR2=$.ajax('t2.php');						/*jqXHR.done(function(response){				alert(response);				});								jqXHR2.done(function(response){				alert(response);				});*/						$.when(jqXHR,jqXHR2).done(function(r1,r2){			alert(r1[0]);			alert(r2[0]);			});    });

  

转载于:https://www.cnblogs.com/xiaoduc-org/p/5040190.html

你可能感兴趣的文章
预处理、const与sizeof相关面试题
查看>>
爬虫豆瓣top250项目-开发文档
查看>>
有趣的数学书籍
查看>>
teamviewer 卸载干净
查看>>
eclipse的maven、Scala环境搭建
查看>>
架构师之路(一)- 什么是软件架构
查看>>
USACO 土地购买
查看>>
【原创】远景能源面试--一面
查看>>
B1010.一元多项式求导(25)
查看>>
10、程序员和编译器之间的关系
查看>>
配置 RAILS FOR JRUBY1.7.4
查看>>
AndroidStudio中导入SlidingMenu报错解决方案
查看>>
修改GRUB2背景图片
查看>>
Ajax异步
查看>>
好记性不如烂笔杆-android学习笔记<十六> switcher和gallery
查看>>
JAVA GC
查看>>
3springboot:springboot配置文件(外部配置加载顺序、自动配置原理,@Conditional)
查看>>
前端第七天
查看>>
图解SSH原理及两种登录方法
查看>>
【总结整理】JQuery基础学习---样式篇
查看>>