欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-20 21:15:29
糟糕的使用方法 . 代码如下: $second.html(value); $second.on('click',function(){ alert(...

糟糕的使用方法

. 代码如下:


$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);