码迷,mamicode.com
首页 > Web开发 > 详细

jquery 1.9里面已经删除了toggle(fn1, fn2)函数

时间:2015-08-17 18:59:49      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

转自:http://blog.sina.com.cn/s/blog_50042fab0101c7a9.html

jquery 

1.9里面已经删除了toggle(fn1, fn2)函数:
引用
Note: This method signature was deprecated in jQuery 1.8 and removed in jQuery 
1.9. jQuery also provides an animation method named .toggle() that toggles the 
visibility of elements. Whether the animation or the event method is fired depends on 
the set of arguments passed.

要用的话可以引用1.9以下的jquery,或者写一个替代
var flag=1;
    $(".selector").click(function(){
        if(flag==1){
            //执行方法;
            flag=0;
        }else{
            //执行方法;
            flag=1;
        }
或者外接函数,例如
toggle(objs) {
    $(objs).each(function(){
        if ($(this).is(‘:hidden‘)) $(this).show(); else $(this).hide();
    });
}

jquery 1.9里面已经删除了toggle(fn1, fn2)函数

标签:

原文地址:http://www.cnblogs.com/haha12/p/4737049.html

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