链式调用
jquery对象的方法会在执行完后返回这个jquery对象,所有jquery对象的方法可以连起来写:
('#div1').animate({
width:300,
height:300
},1000,swing,function(){
alert('done!');
});
参数可以写成数字表达式:
(window).height();
4、获取页面高度
(window).scroll(function(){
......
})
作者:BaiBao丶
链接:https://www.jianshu.com/p/54986fa4d891
來源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。
网友评论