欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery鏈式操作的正確使用方法

 更新時間:2014年01月06日 10:11:47   作者:  
jQuery實現(xiàn)方法的鏈式操作是非常容易的。這里給出正確的使用方法

糟糕的使用方法

復制代碼 代碼如下:

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

相關文章

最新評論