Example of jquery getting data from a JSON object

Source: Internet
Author: User

Example of jquery getting data from a JSON object

This article describes how to use jquery to obtain data from JSON objects. The Code contains comments.

 

The Code is as follows:

$. Ajax ({

Url: 'change this address to your own ',

Data: {S_CourseID: courseid, CurrTime: new Date (). getTime ()}, // Add a timestamp; otherwise, data will not be updated automatically.

DataType: 'json ',

Success: function (data)

{

 

If (data! = Null ){

 

If (data. length> 0 ){

 

For (var I = 0; I <data. length; I ++ ){

 

Specids = specids + data [I]. S_SpecialtyID + ","; // obtain the data in the JSON object

 

Coursetypeid = data [I]. S_CourseTypeID;

 

}

 

If (specids. length> 0 ){

 

Specids = specids. substring (0, specids. length-1 );

 

}

 

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.