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

$(...).live is not function

时间:2016-11-08 13:42:34      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:not   ons   .com   return   bsp   ...   remove   stop   find   

项目中引入了一个插件,但是调用的时候就报了$(...).live is not function

上网搜索了一下live方法在1.9中被删除了,因为平时自己用的时候就用on的方法,没用过live,所以对这个还不算熟悉。上代码

原代码:

$("li.select",_SELF).live("mouseover",function(){
                    $(this).find("div").show().animate({"opacity":options.setTitle.opacity },100);
                    $(this).find("b").show().delay(100).stop().animate({"height":textHeight,"opacity":options.setTitle.opacity},150);
                    return false;
                })

改完后的

    $("li.select",_SELF).on("mouseover",function(){
                    $(this).find("div").show().animate({"opacity":options.setTitle.opacity },100);
                    $(this).find("b").show().delay(100).stop().animate({"height":textHeight,"opacity":options.setTitle.opacity},150);
                    return false;
                })

相对应的1.9中被移除的方法都在这里哟 http://jquery.com/upgrade-guide/1.9/#live-removed

 

$(...).live is not function

标签:not   ons   .com   return   bsp   ...   remove   stop   find   

原文地址:http://www.cnblogs.com/myzy/p/6042527.html

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