博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery 修改排序
阅读量:6653 次
发布时间:2019-06-25

本文共 2796 字,大约阅读时间需要 9 分钟。

hot3.png

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
    <head>
    <title>My JSP ""index.jsp"" starting page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script type="text/javascript" src="../jquery/js/jquery-1.9.1.js"></script>
    <script type="text/javascript">
    //删除
    function del(t){
      $(t).parent().parent().remove();
    }
    
    //上移
    function up(t){
     var i=$(t).parent().parent().index();//当前行的id
     if(i>1){//不是表头,也不是第一行,则可以上移
       var tem0=$(t).parent().parent().html();
       var tem1=$(t).parent().parent().prev().html();
       $(t).parent().parent().prev().html(tem0);
       $(t).parent().parent().html(tem1);
     }
    }
    //下移
    function down(t){
     var l=$("#MyTB tr").length;//总行数
     var i=$(t).parent().parent().index();//当前行的id
     if(i<l-1){//不是最后一行,则可以下移
       var tem0=$(t).parent().parent().html();
       var tem1=$(t).parent().parent().next().html();
       $(t).parent().parent().next().html(tem0);
       $(t).parent().parent().html(tem1);
     }
    }   
    function add(t){
     var tem0=$(t).parent().parent().html();
     $(t).parent().parent().append("<tr>"+tem0+"</tr>");
    }
    </script>
    </head>
    <body>
    <table id="MyTB">
        <tr>
            <td>xxxxxxxx</td>
            <td>xxxxxxxx</td>
            <td>xxxxxxxx</td>
            <td>xxxxxxxx</td>
            <td> </td>
        </tr>
        <tr>
            <td>11111111</td>
            <td>11111111</td>
            <td>11111111</td>
            <td>11111111</td>
            <td>
                <input type="button" value="上" οnclick="up(this)" />
                <input type="button" value="下" οnclick="down(this)" />
                <input type="button" value="删" οnclick="del(this)" />
                <input type="button" value="加" οnclick="add(this)" />
            </td>
        </tr>
        <tr>
            <td>22222222</td>
            <td>22222222</td>
            <td>22222222</td>
            <td>22222222</td>
            <td>
                <input type="button" value="上" οnclick="up(this)" />
                <input type="button" value="下" οnclick="down(this)" />
                <input type="button" value="删" οnclick="del(this)" />
                <input type="button" value="加" οnclick="add(this)" />
            </td>
        </tr>
        <tr>
            <td>33333333</td>
            <td>33333333</td>
            <td>33333333</td>
            <td>33333333</td>
            <td>
                <input type="button" value="上" οnclick="up(this)" />
                <input type="button" value="下" οnclick="down(this)" />
                <input type="button" value="删" οnclick="del(this)" />
                <input type="button" value="加" οnclick="add(this)" />
            </td>
        </tr>
        <tr>
            <td>44444444</td>
            <td>44444444</td>
            <td>44444444</td>
            <td>44444444</td>
            <td>
                <input type="button" value="上" οnclick="up(this)" />
                <input type="button" value="下" οnclick="down(this)" />
                <input type="button" value="删" οnclick="del(this)" />
                <input type="button" value="加" οnclick="add(this)" />
            </td>
        </tr>
        <tr>
            <td>55555555</td>
            <td>55555555</td>
            <td>55555555</td>
            <td>55555555</td>
            <td>
                <input type="button" value="上" οnclick="up(this)" />
                <input type="button" value="下" οnclick="down(this)" />
                <input type="button" value="删" οnclick="del(this)" />
                <input type="button" value="加" οnclick="add(this)" />
            </td>
        </tr>
    </table>
</body>
</html>

转载于:https://my.oschina.net/rikkilovelife/blog/138422

你可能感兴趣的文章
在虚拟机和主机之间共享文件夹
查看>>
用户场景描述
查看>>
JSAP107
查看>>
cocos2d-x学习笔记12:如何将win32移植到iOS
查看>>
你们可能都小看了Windows!
查看>>
linux下mrtg,cacti,nagios,ganglia的搭建和win/linux主机等的监控。
查看>>
写在网管员世界杂志更名之际
查看>>
用开源工具Xplico助力网络应用层数据解码
查看>>
如何优化cocos2d程序的内存使用和程序大小
查看>>
夏普美人尖AQUOS S2争议中圈粉,美人尖手机魅力何在?
查看>>
比较数据泵和exp/imp对相同数据导出/导入的性能差异
查看>>
Oracle 判断 并 手动收集 统计信息 脚本
查看>>
bus,device,driver三者关系
查看>>
Shell 脚本条件判断的三中类型(备忘)
查看>>
软件学习遐想
查看>>
JQUERY中 GET与POST方法的区别 Request.QueryString Request.Form区别
查看>>
转载笔记:DropDownList无限级分类(灵活控制显示形式)
查看>>
Design Pattern
查看>>
GDI+ 使用窗体默认字体
查看>>
Silverlight:应用程序和编程模型
查看>>