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