jquery链式操作、链式写法的小例子

发布时间:2020-05-20编辑:脚本学堂
在jquery中实现链式操作,比较方便,本文分享一个例子,带领大家了解下jquery链式操作的实现方法。

jquery实现方法的链式操作。

1,错误方法:
 

复制代码 代码示例:
$second.html(value);
$second.on('click',function(){
alert('hello everybody');
});
$second.fadeIn('slow');
$second.animate({height:'120px'},500);

2,建议使用方法
 

复制代码 代码示例:
$second.html(value);
$second.on('click',function(){
alert('hello everybody');
}).fadeIn('slow').animate({height:'120px'},500);