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
    Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

    Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

    Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

    Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

    JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

    JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

    JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

    JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

    Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

    Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

    JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

    The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

    The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

    Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

    Node.js Streams with TypeScriptNode.js Streams with TypeScriptApr 30, 2025 am 08:22 AM

    Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

    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

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Tools

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.