zoukankan      html  css  js  c++  java
  • 点击编辑table变为可编辑状态

    简单描述:开发中遇到一个小困难,table展示的数据,需要是可编辑的,点击编辑按钮,页面table可以进行编辑,编辑完成后,点击保存数据就保留下来~~~ 

    思路:用一个带有input的表去替换不带input的表,用show和hide来实现

    代码:

    //html代码
    <div class="btn-group">
    <button class="btn sbold green" id="edit" onclick="">
        <span class="ladda-label">编辑</span>
    </button>
    </div>
    <div class="btn-group">
    <button class="btn sbold green" id="save" onclick="">
        <span class="ladda-label">保存</span>
    </button>
    </div>

    <form action="" class="horizontal-form" method="post" id="saveForm" autocomplete="off">
    <table class="table table-striped table-bordered table-hover table-checkable order-column"
    id="table1">
    <thead>
    <tr >
    <th>序号</th>
    <th>编号</th>
    <th>名称</th>
    <th>编码</th>
    </tr>
    </thead>
    <tbody>
    <tr th:each="list : ${fileList}" class="trs find">
    <td class="dbclicktd" th:text="${list.temp_id}">序号</td>
    <td class="dbclicktd" th:text="${list.temp_number}">编号</td>
    <td class="dbclicktd" th:text="${list.temp_name}">名称</td>
    <td class="dbclicktd" th:text="${list.temp_code}">编码</td>
    </tr>
    </tbody>
    </table>

    <table class="table table-striped table-bordered table-hover table-checkable order-column"
    id="tableto">
    <thead>
    <tr >
    <th>序号</th>
    <th>合同编号</th>
    <th>企业名称</th>
    <th>企业编码</th>
    </tr>
    </thead>
    <tbody>
    <tr id="editExcel" th:each="list : ${rightsFailList}" class="trs editExcel">
    <td class="dbclicktd"><input th:value="${list.temp_id}" name="temp_id"/></td>
    <td class="dbclicktd"><input th:value="${list.temp_number}" name="temp_number"/></td>
    <td class="dbclicktd"><input th:value="${list.temp_name}" name="temp_name"/></td>
    <td class="dbclicktd"><input th:value="${list.temp_code}" name="temp_code"/></td>
    </tr>
    </tbody>
    </table>
    </form> 
    //js代码
    $(function () {
    var info=$("#table1_info").val();
    $("#tableto").hide();
    $("#tableto_info").hide();
    $("#tableto_length").hide();
    $("#tableto_paginate").hide();
    $("#tableto_wrapper").hide();
    });

    $("#edit").click("click", function () {
    $("#tableto").show();
    $("#tableto_info").show();
    $("#tableto_length").show();
    $("#tableto_paginate").show();
    $("#tableto_wrapper").show();
    $("#table1").hide();
    $("#table1_info").hide();
    $("#table1_length").hide();
    $("#table1_paginate").hide();
    $("#table1_wrapper").hide();
    var info=$("#table1_info").text();
    $("#tableto_info").html(info);
    }); 

    $("#save").click("click", function () {
    var ri=JSON.stringify(riList);
    var obj = JSON.stringify($("#saveForm").serializeJson());
    var searchServPath = "/sys/chas/aimCont";
    var html = $("#topli").html();
    var tb = $("#loadhtml");
    tb.html(CommnUtil.loadingImg());
    tb.load(rootPath + searchServPath,{objJson:obj,riJson:ri}, function () {
    $("#topli").html(html);
    });

    }); 

     点击保存后可以把修改后的数据传递到后台做一些处理,然后通过Model或者ModelMap的addAttribute()方法在返回回来。

    总结:就是用两张table进行相互的显隐替换,从而实现table的可编辑。

  • 相关阅读:
    asp.net大文件断点续传
    JS大文件上传解决方案
    B/S大文件上传解决方案
    B/S上传整个文件夹
    网页上传整个文件夹
    POJ 1068 Parencodings
    74LS85 比較器 【数字电路】
    二叉树的建立与先序,后序,中序输出
    Android 学习之 开源项目PullToRefresh的使用
    理解矩阵及谱聚类小记
  • 原文地址:https://www.cnblogs.com/xuchao0506/p/10007112.html
Copyright © 2011-2022 走看看