var storeArray=new Array(); $("input[name='storeid']").each(function(i){ var curStoreObj = {}; var curStoreId = $(this).val(); curStoreObj.storeId = curStoreId; if(curStoreId){ var curStoreMoney = $("#"+curStoreId+"storeMoney").html(); curStoreMoney = curStoreMoney.replace("¥",""); curStoreObj.storeOrderMoney = curStoreMoney; } storeArray.push(curStoreObj); }); var storeJinEJson = JSON.stringify(storeArray);//数组转成json