Jquery的each遍历数据组成JSON
Posted Mr.风的影子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery的each遍历数据组成JSON相关的知识,希望对你有一定的参考价值。
遍历每个标签的值
html代码:
<volist name="parArr" id="item" key="$key">
<tbody>
<tr>
<td class="center number">{$key+1}</td>
<td id=‘product_id‘ class="product_id">{$item.id}</td>
<td>
<a href="http://www.enkiorder.com/index.php/Home/detail/detail/id/{$item.id}" target="blank">{$item.name}</a>
</td>
<td>
<input type="hidden" value={$item.cid} class="cid">
<input type="text" style="width:50px" value="{$item.heat}">
</td>
</tr>
</tbody>
</volist>
JS代码:
<script type="text/javascript">
// console.log(json);
$(‘#add‘).click(function(){
var json={};
$(‘.cid‘).each(function(){
var cid=$(this).val();
var heat=$(this).next().val();
console.log(heat);
json[cid]=heat;
})
$.ajax({
type:"POST",
data:json,
url:"{:U(‘Categorys/update‘)}",
success:function(msg){
if(msg!=‘no‘){
alert(‘添加成功‘);
window.location.reload();
}
}
})
})
</script>
以上是关于Jquery的each遍历数据组成JSON的主要内容,如果未能解决你的问题,请参考以下文章
jQuery$.each循环遍历详解,各种取值对比,$.each遍历数组对象Dom元素二维数组双层循坏类json数据等等