Using each in jQuery to process json data, jqueryjson

Source: Internet
Author: User

Using each in jQuery to process json data, jqueryjson

Eg: when the value of the passed ID is true, add a class named focus to the ID label, for example:

Var obj = {id01: 'true', id02: 'flase ', id03: 'true'}; $. each (obj, function (key, val) {if (val = 'true') {$ ('#' + key ). addClass ('focal ');}});

Result: A class label is added for the ID id01 and id03 labels;

Eg2:

Json data is as follows:

[{"Id": 10004, "PageName": "club" },{ "Id": 10040, "PageName": "qaz" },{ "Id": 10059, "PageName": "beauty"}]

To use jquery to operate the data, use $. each:

$. Each (data, function (I, item) {alert (item. PageName );});

It is feasible for me to perform the test.

The above is all the content of this article. I hope you will like it.

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.