zoukankan      html  css  js  c++  java
  • 表格数据上下行互换位置

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>表格数据上下行互换位置</title>
        <script src="js/jquery-1.7.min.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(document).ready(function () {
                //上移
                $("input.upbtn").each(function () {
                    $(this).click(function () {
                        var $tr = $(this).parents("tr");
                        if ($tr.index() != 0) {
                            $tr.prev().before($tr);
                        }
                    });
                });
                //下移
                var trLength = $("input.downbtn").length;           
                $("input.downbtn").each(function () {
                    $(this).click(function () {
                        var $tr = $(this).parents("tr");                  
                        if ($tr.index() != trLength - 1) {                      
                            $tr.next().after($tr);
                        }
                    });
                });
            });
        
        </script>
    </head>
    <body>
    <table border="1" cellpadding=0 cellspacing=0>
        <tr>
            <td>6</td>
            <td>xxxx66xxx</td>
            <td>2013-5-26</td>
            <td><input type="button" value="上移" class="upbtn" /><input type="button" value="下移" class="downbtn" /></td>
        </tr>
        <tr>
            <td>7</td>
            <td>xxxx77xxx</td>
            <td>2013-5-27</td>
            <td><input type="button" value="上移" class="upbtn" /><input type="button" value="下移" class="downbtn" /></td>
        </tr>
        <tr>
            <td>8</td>
            <td>xxx88xxxx</td>
            <td>2013-5-28</td>
            <td><input type="button" value="上移" class="upbtn" /><input type="button" value="下移" class="downbtn" /></td>
        </tr>
    </table>
    </body>
    </html>


  • 相关阅读:
    人物-IT-张志东:张志东
    人物-IT-任正非:任正非
    人物-IT-张朝阳:张朝阳
    院校-清华大学:清华大学
    人物-丁磊:丁磊
    人物-李彦宏:李彦宏
    人物-IT-马云:马云
    inittab
    initlocation
    initdb
  • 原文地址:https://www.cnblogs.com/moqiang02/p/4061103.html
Copyright © 2011-2022 走看看