jQuery ajax json 数据的遍历代码

先给大家说下我的需求:进行ajax请求后,后台传递回来以下json数据。

具体实现代码如下所示:

JavaScript代码

{ "data":[ {"id":"1","name":"选择A","value":"A"}, {"id":"2","name":"选择B","value":"B"}, {"id":"3","name":"选择C","value":"C"} ] }

对上面的json数据类在jquery 的success 函数中解析

JavaScript代码

$.ajax({ type: "POST", url: "xxx.do", dataType : "json", // 指定返回类型 data: {xxx:"yyy"}, // 传递到后台的参数 success: function(data) { $.each(data, function(index,values){ // 解析出data对应的Object数组 $.each(values,function(index2,value){ // 遍历Object数组 ,每个对象的值存放在value ,index2表示为第几个对象 // 根据自己的逻辑进行数据的处理 alert(value.name + " " + value.value); // TODO: 逻辑 }); }); }, error : function() { alert("系统出现问题"); } });

继续来个例子

本章节分享一段代码实例,是jQuery封装的ajax对JSON数据的请求处理。
代码比较简单,对于有经验的人员来说可以掠过,初学者可以做一下参考之用。
代码如下:

<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <title>脚本之家</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script> $(document).ready(function(){ $("#bt").click(function(){ $.ajax({ type: "get", dataType: "json", url: "demo/jQuery/ajax/txt/json.txt", success: function(msg){ var data = msg str=""; $.each(data,function(index, n){ str=str+data[index].webName+","+data[index].url+","+data[index].age+"<br/>"; }); $("#show").html(str); } }); }) }) </script> </head> <body> <div id="show"></div> <input type="button" id="bt" value="查看效果"/> </body> </html>

以上所述是小编给大家介绍的jQuery ajax json 数据的遍历代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

时间: 2024-09-17 05:02:39

jQuery ajax json 数据的遍历代码的相关文章

jQuery ajax json 数据的遍历代码_AJAX相关

先给大家说下我的需求:进行ajax请求后,后台传递回来以下json数据. 具体实现代码如下所示: JavaScript代码 { "data":[ {"id":"1","name":"选择A","value":"A"}, {"id":"2","name":"选择B","value&

jQuery Ajax json 数据提供保存代码

<html> <head> <title>jquery ajax 网页特效on 数据提供保存代码</title> </head> <script language="网页特效" src="jquery.js"></script> <script language="网页特效"> $(document).ready(function () {    $(

jquery $.ajax json数据传递方法

protected void page_load(object sender, eventargs e) { hashtable ht = new hashtable(); string name = request.params["name"].tostring(); string birth = request.params["birthday"].tostring(); if (!string.isnullorempty(name) && !s

关于JQUERY+AJAX+JSON数据返回的问题,求高手找找原因。不是很熟悉

问题描述 从后台记录的ASHX返加前台的JSON数据为:[{"Id":"MQ==","PopCode":"511321198501306776","PopName":"刘XX","Gental":"1","Birthday":"2012-6-10","Level":"小学&quo

基于 Jquery+Ajax+Json高效分页实现代码

   代码如下 复制代码 <%@ WebHandler Language="C#" Class="GetData" %> using System; using System.Web; using System.Data.SqlClient; using System.Data; using System.Collections.Generic; using System.Web.Script.Serialization; public class Ge

jquery ajax json数据发送返回与请求实例

  <!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <

asp.net中利用Jquery+Ajax+Json实现无刷新分页的实例代码

 本篇文章主要是对asp.net中利用Jquery+Ajax+Json实现无刷新分页的实例代码进行了介绍,需要的朋友可以过来参考下,需要对大家有所帮助  代码如下: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="AjaxJson.aspx.cs" Inherits="AjaxJson" %> <!DOCTYPE html PUBLIC &quo

asp.net中利用Jquery+Ajax+Json实现无刷新分页的实例代码_实用技巧

复制代码 代码如下: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="AjaxJson.aspx.cs" Inherits="AjaxJson" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR

AJAX跨域请求JSONP获取JSON数据的实例代码

Asynchronous JavaScript and XML (Ajax) 是驱动新一代 Web 站点(流行术语为 Web 2.0 站点)的关键技术.Ajax 允许在不干扰 Web 应用程序的显示和行为的情况下在后台进行数据检索.使用XMLHttpRequest 函数获取数据,它是一种 API,允许客户端 JavaScript 通过 HTTP 连接到远程服务器.Ajax 也是许多 mashup 的驱动力,它可将来自多个地方的内容集成为单一 Web 应用程序. 不过,由于受到浏览器的限制,该方法