标签:
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.
标签:
原文地址:http://www.cnblogs.com/Crow0/p/5136905.html