search
HomeWeb Front-endJS Tutorialjquery+ajax obtains and operates json data (with code)

This time I will bring you jquery ajax to obtain and operate json data (with code). What are the precautions for jquery ajax to obtain and operate json data. The following is a practical case, let's take a look.

For the problem, get json data from the background and fill the content into the drop-down list. The code is very simple. Please see the code below for the specific process.

Requirements:url: link par: ID sel: drop-down list selector

//Get the drop-down list

function BuildSelectBox(url, par, sel) {
 $(sel).empty();
 $.getJSON(url, { id: par }, function (json, textStatus) {
  for (var i = json.length - 1; i >= 0; i--) {
   $(sel).prepend('<option>' + json[i].Name + '</option>')
  };
  $(sel).prepend('<option>请选择</option>')
 });
}

The above code is very simple, and this problem is easily solved.

Jquery uses Ajax to obtain the Json data page processing process returned by the background

Please see the following code example for the specific implementation process:

nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
 
 <title></title> 
 <script></script> 
 <script> 
  $(function () { 
   $.ajax({ 
    url: &#39;jsondata.ashx&#39;, 
    type: &#39;GET&#39;, 
    dataType: &#39;json&#39;, 
    timeout: 1000, 
    cache: false, 
    beforeSend: LoadFunction, //加载执行方法 
    error: erryFunction, //错误执行方法 
    success: succFunction //成功执行方法 
   }) 
   function LoadFunction() { 
    $("#list").html(&#39;加载中...&#39;); 
   } 
   function erryFunction() { 
    alert("error"); 
   } 
   function succFunction(tt) { 
    $("#list").html(&#39;&#39;); 
    //eval将字符串转成对象数组 
    //var json = { "id": "10086", "uname": "zhangsan", "email": "zhangsan@qq.com" }; 
    //json = eval(json); 
    //alert("===json:id=" + json.id + ",uname=" + json.uname + ",email=" + json.email); 
    var json = eval(tt); //数组   
    $.each(json, function (index, item) { 
     //循环获取数据 
     var name = json[index].Name; 
     var idnumber = json[index].IdNumber; 
     var sex = json[index].Sex; 
     $("#list").html($("#list").html() + "<br>" + name + " - " + idnumber + " - " + sex + "<br/>"); 
    }); 
   } 
  }); 
 </script> 
 
 
 
       
        using System;  using System.Web;  using System.Web.Script.Serialization;  using System.IO;  using System.Text;  using System.Collections.Generic;  using Newtonsoft.Json;  using System.Data;  public class jsondata : IHttpHandler {   public void ProcessRequest(HttpContext context)   {    context.Response.ContentType = "text/plain";    string JsonStr = JsonConvert.SerializeObject(CreateDT());    context.Response.Write(JsonStr);    context.Response.End();   }   #region 创建测试数据源   //创建DataTable   protected DataTable CreateDT()   {    DataTable tblDatas = new DataTable("Datas");    //序号列    //tblDatas.Columns.Add("ID", Type.GetType("System.Int32"));    //tblDatas.Columns[0].AutoIncrement = true;    //tblDatas.Columns[0].AutoIncrementSeed = 1;    //tblDatas.Columns[0].AutoIncrementStep = 1;    //数据列    tblDatas.Columns.Add("IdNumber", Type.GetType("System.String"));    tblDatas.Columns.Add("Name", Type.GetType("System.String"));    tblDatas.Columns.Add("BirthDate", Type.GetType("System.String"));    tblDatas.Columns.Add("Sex", Type.GetType("System.String"));    tblDatas.Columns.Add("Wage", Type.GetType("System.Decimal"));    tblDatas.Columns.Add("Bonus", Type.GetType("System.Decimal"));    //统计列开始    tblDatas.Columns.Add("NeedPay", Type.GetType("System.String"), "Wage+Bonus");    //统计列结束    tblDatas.Columns.Add("Address", Type.GetType("System.String"));    tblDatas.Columns.Add("PostCode", Type.GetType("System.String"));    //设置身份证号码为主键    tblDatas.PrimaryKey = new DataColumn[] { tblDatas.Columns["IdNumber"] };    tblDatas.Rows.Add(new object[] { "43100000000000", "张三", "1982", "0", 3000, 1000, null, "深圳市", "518000" });    tblDatas.Rows.Add(new object[] { "43100000000001", "李四", "1983", "1", 3500, 1200, null, "深圳市", "518000" });    tblDatas.Rows.Add(new object[] { "43100000000002", "王五", "1984", "1", 4000, 1300, null, "深圳市", "518000" });    tblDatas.Rows.Add(new object[] { "43100000000003", "赵六", "1985", "0", 5000, 1400, null, "深圳市", "518000" });    tblDatas.Rows.Add(new object[] { "43100000000004", "牛七", "1986", "1", 6000, 1500, null, "深圳市", "518000" });    return tblDatas;   }   #endregion   public bool IsReusable   {    get    {     return false;    }   }  }      using System;  using System.Web;  using System.Web.Script.Serialization;  using System.IO;  using System.Text;  using System.Collections;  using System.Collections.Generic;  using System.Data;  public class jsondata : IHttpHandler {   public void ProcessRequest(HttpContext context)   {    context.Response.ContentType = "text/plain";    context.Response.Cache.SetNoStore();    string data = "[{\"key\":\"1\",\"info\":{\"name\":\"222\",\"age\":\"333\",\"sex\":\"444\"}},{\"key\":\"2\",\"info\":{\"name\":\"999\",\"age\":\"000\",\"sex\":\"111\"}}]";    context.Response.Write(new JavaScriptSerializer().Serialize(data));   }   public bool IsReusable   {    get    {     return false;    }   }  }    nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">          <script></script>   <script> function GetPara(o) { var sortid = $(o).val(); $.ajax({ url: &#39;GetPara.ashx?type=get&sortid=&#39; + sortid, type: &#39;GET&#39;, dataType: &#39;json&#39;, timeout: 3000, cache: false, beforeSend: LoadFunction, //加载执行方法 error: erryFunction, //错误执行方法 success: succFunction //成功执行方法 }) function LoadFunction() { $("#list").html(&#39;加载中...&#39;); } function erryFunction() { alert("error"); } function succFunction(tt) { $("#list").html(&#39;&#39;); var json = eval(tt); //数组 $.each(json, function (index, item) { //循环获取数据 var Id = json[index].id; var Name = json[index].name; $("#list").html($("#list").html() + "<br>" + Name + "<input type=&#39;text&#39; id=&#39;" + Id + "&#39; /><br/>"); }); } }; function SavePara() { var parameter = {}; $("#list input:text").each(function () { var key = $(this).attr("id"); var value = $(this).val(); parameter[key] = value; }); $.ajax({ url: &#39;GetPara.ashx?type=save&#39;, type: &#39;POST&#39;, dataType: &#39;json&#39;, data: parameter, timeout: 3000, cache: false, beforeSend: LoadFunction, //加载执行方法 error: erryFunction, //错误执行方法 success: succFunction //成功执行方法 }) function LoadFunction() { } function erryFunction() { } function succFunction(tt) { } }; </script>       
   

            

              
            using System;  using System.Web;  using System.Data;  using System.Collections.Generic;  using System.Web.Script.Serialization;  public class GetPara : IHttpHandler {    public void ProcessRequest (HttpContext context) {    context.Response.ContentType = "text/plain";    string SortId = context.Request["sortid"];    string Type = context.Request["type"];    if (Type=="get")    {     if (!string.IsNullOrEmpty(SortId))     {      DataTable dt = MSCL.SqlHelper.GetDataTable("select * from PR_PRODUCTPARAS where sortid='" + SortId + "' ");      List list = new List();      for (int i = 0; i 

    I believe you have read this article You have mastered the case method. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

    Recommended reading:

    Detailed explanation of the steps of ajax reading properties

    Summary of jquery ajax form submission method

    How to implement partial refresh function with jQuery and ajax

    The above is the detailed content of jquery+ajax obtains and operates json data (with code). For more information, please follow other related articles on the PHP Chinese website!

    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

    去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

    JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

    本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

    原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

    怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

    JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

    本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

    JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

    本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

    javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

    方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

    foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

    foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

    整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

    本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Tools

    MinGW - Minimalist GNU for Windows

    MinGW - Minimalist GNU for Windows

    This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

    mPDF

    mPDF

    mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

    WebStorm Mac version

    WebStorm Mac version

    Useful JavaScript development tools

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment