zoukankan      html  css  js  c++  java
  • 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>

  • 相关阅读:
    提纲挈领webrtc之vad检测
    提纲挈领webrtc音频处理算法之写在前面的话
    搭建git远程服务器三步骤
    详解m4文件
    chrome浏览器被reimage pair 劫持怎么处理
    linux查看系统32位还是64位
    git gc和fsck的用法
    ubuntu 16.04 的64位 安装arm-none-linux-gnueabi-gcc的步骤和问题解决
    利用终端命令实现进入ntfs分区有两种方法。
    ubuntu-14.10下,安装gcc交叉编译器遇到问题及解决方法
  • 原文地址:https://www.cnblogs.com/sweet521/p/5627930.html
Copyright © 2011-2022 走看看