20151211jquery ajax进阶代码备份

//数据处理

	$(‘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]);
			});
    });

  

时间: 2024-10-26 08:59:02

20151211jquery ajax进阶代码备份的相关文章

20151210jquery进阶 代码备份

$(function () { /*$('form input[type=button]').click(function() { $.ajax({ type:'POST', //url:'http://www.google.com/user.php', url:'user1.php', data:$('form').serialize(), success: function(response,status,xhr){ $("#box").html(response); }, err

20151211Jquery Ajax进阶学习笔记

四.JSON 和 JSONP 如果在同一个域下,$.ajax()方法只要设置 dataType 属性即可加载 JSON 文件.而在非 同域下,可以使用 JSONP,但也是有条件的. //$.ajax()加载 JSON 文件 $.ajax({ type:'POST', url:'test.json', dataType:'json', success:function(response,status,xhr){ alert(response[0].url); } }); 如果想跨域操作文件的话,我

第一百七十四节,jQuery,Ajax进阶

jQuery,Ajax进阶 学习要点: 1.加载请求 2.错误处理 3.请求全局事件 4.JSON 和 JSONP 5.jqXHR 对象 在 Ajax 课程中,我们了解了最基本的异步处理方式.本章,我们将了解一下 Ajax 的 一些全局请求事件.跨域处理和其他一些问题. 一.加载请求 在 Ajax 异步发送请求时,遇到网速较慢的情况,就会出现请求时间较长的问题.而超 过一定时间的请求,用户就会变得不再耐烦而关闭页面.而如果在请求期间能给用户一些提 示,比如:正在努力加载中...,那么相同的请求时

JSONP平台对接代码备份

<script type="text/javascript">$(function(){  $.ajax({   url:"http://192.168.11.97:8025/battle_summary?player_guid=1000000",   async: false,   dataType:"jsonp",   jsonpCallback:"summary",   success:function(su

jQuery基础---Ajax进阶

原文:jQuery基础---Ajax进阶 内容提纲: 1.加载请求 2.错误处理 3.请求全局事件 4.JSON 和 JSONP 5.jqXHR 对象 发文不易,转载请注明出处! 在 Ajax 基础一篇中,我们了解了最基本的异步处理方式.本篇来了解一下 Ajax 的一些全局请求事件.跨域处理和其他一些问题. 一.加载请求 在 Ajax 异步发送请求时,遇到网速较慢的情况,就会出现请求时间较长的问题.而超过一定时间的请求, 用户就会变得不再耐烦而关闭页面. 而如果在请求期间能给用户一些提示,比如:

给Ajax 优化代码

给自己的代码优化一下function Dream_Ajax(url, parms, fuSuccess, fuError, isAsync, isPost, retrueType) { /// <summary>Ajax自定义请求</summary> /// <param name="url" type="string">请求url</param> /// <param name="parms"

笔记-Ajax[2]-代码的实现。

<script> var xhr; //创建一个ajax的对象 try{ xhr=new XMLHttpRequest(); }catch(e){ xhr=new ActiveXObject("Microsoft.XMLHTTP"); } //建立请求 xhr.open('post','/ajax/content.php',true); //发送请求 xhr.send('username=Ajax'); //响应 xhr.onreadystatechange=functio

最最基层的ajax交互代码jquery+java之间的json跨域传递以及java的json代码返回

首先导入jar包 上面的jar包主要是用来将map或list数据转换成json字符串,传递到前台使用. 静态页面的代码:2.html 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>ajax</title> 6 <script type="text/javascript" src="js/

[RK_2014_0911]串口代码备份,SerialPortOpen(),SerialPortRead(),SerialPortWrite()

[代码备份01] uart.c /******************************************************************************* Copyright (C), *** Tech. Co., Ltd. FileName: uart.c Author: Version : Date: 2008-1-11 Description: 串口的通用操作文件 other: Function List: History: // 历史修改记录 1.