码迷,mamicode.com
首页 > Web开发 > 详细

JSON在jquery中的使用

时间:2016-01-17 12:16:32      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

1.组装JSON值

function getJSONString() {
    var jsons = new Array();
    $(".sel").each(function() {
        if ($(this).attr("checked")) {
            var id = $(this).val();
            var json = {};
            json.fphm = $("#fphm_" + id).val();
            json.timemd5 = $("#timemd5_" + id).val();

            jsons[jsons.length] = json;
        }
    });

    return JSON.stringify(jsons);
}

2.

JSON在jquery中的使用

标签:

原文地址:http://www.cnblogs.com/Crow0/p/5136905.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!