• 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="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>

  • 相关阅读:
    VC++6.0 自定义按钮,无标题对话框的拖动方法
    完整的使用线程池的多线程C/S Socket类
    树形控件Tree Control
    关闭数据执行保护
    VC++开发垃圾文件清理软件(下)
    用完成端口开发大响应规模的Winsock应用程序
    去掉右键多余显卡菜单
    自动登陆系统
    查询数据库中所有表名和表中所有字段名
    单行编辑框文本垂直居中(包含计算字体高度)
  • 原文地址:https://www.cnblogs.com/sweet521/p/5627930.html
Copyright © 2020-2023  润新知