zoukankan      html  css  js  c++  java
  • 表格行上下移,置顶的js代码

    $(function(){ 
        //上移 
        var $up = $(".up") 
        $up.click(function() { 
            var $tr = $(this).parents("tr"); 
            if ($tr.index() != 0) { 
                $tr.fadeOut().fadeIn(); 
                $tr.prev().before($tr); 
                 
            } 
        }); 
        //下移 
        var $down = $(".down"); 
        var len = $down.length; 
        $down.click(function() { 
            var $tr = $(this).parents("tr"); 
            if ($tr.index() != len - 1) { 
                $tr.fadeOut().fadeIn(); 
                $tr.next().after($tr); 
            } 
        }); 
        //置顶 
        var $top = $(".top"); 
        $top.click(function(){ 
            var $tr = $(this).parents("tr"); 
            $tr.fadeOut().fadeIn(); 
            $(".table").prepend($tr); 
            $tr.css("color","#f60"); 
        }); 
    }); 

     

  • 相关阅读:
    pip备忘录
    Vue.js---------------1引入
    centos安装数据库
    Python之网络编程二
    Python之协议
    Python高级
    jvm-3学习教程
    jvm学习-2
    jvm相关学习
    八种常用的排序算法
  • 原文地址:https://www.cnblogs.com/jiaxin/p/5797811.html
Copyright © 2011-2022 走看看