码迷,mamicode.com
首页 > 其他好文 > 详细

toggle 1.9 以后就被删除了

时间:2018-06-05 11:32:06      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:slide   匹配   function   this   item   div   click   hid   toggle   

toggle 1.9 以后就被删除了, 1.8.x  以前可用。

 $(function(){

  $(".p_title").toggle(

    function(){

      $(this).netx().slideDown();

    },  //点击一次

    function(){

      $(this).netx().slideUp();

              })  //再次点击

})

 

 

换成下面方式:

$(".p_title").click(function(){

       $(.c_item).slideUp();   //隐藏所以子目录

  if($(this).next().is(:visible)) {      //is 是否匹配   :visible显示

       //满足条件

       $(this).next().slideUp(); //向上滑动

   }else{

      $(this).next().slideDown(); //向上滑动

         }

})

 

 

优化:

 

$(".p_title").click(function(){

     $(.c_item).slideUp();   //隐藏所以子目录

    if($(this).next().is(:hidden)) {      //is 是否匹配   :visible显示
        $(this).next().slideDown(); //向上滑动
     }

})

 

toggle 1.9 以后就被删除了

标签:slide   匹配   function   this   item   div   click   hid   toggle   

原文地址:https://www.cnblogs.com/youmingkuang/p/9138477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!