51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

jquery链式操作的正确使用方法

糟糕的使用方法
++复制代码++ 代码如下:

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


建议使用方法
++复制代码++ 代码如下:

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



赞(0)
未经允许不得转载:工具盒子 » jquery链式操作的正确使用方法