jquery版本变更

1:.size()方法从jquery1.8版本以后被废弃使用,运用.length替代

2:.context属性在1.10中已经过时

3:.live在1.9中被移除

4:.error()1.8版本已宣告过时,使用.on("error",handler)来替代

5:.toggle()①在animation中②鼠标事件中绑定两个或多个处理程序绑定到匹配元素,用来执行在交替的点击

$("li").toggle(function(){
   $(this).css("background","blue"); 
},function(){
    $(this).css("background","yellow");
},function(){
   $(this).css("background","red"); 
})

  

posted @ 2016-07-24 20:48  小金鱼紫苏  阅读(286)  评论(0编辑  收藏  举报