DIV CSS 佈局教程網

高效jquery之鏈式操作
編輯:JQuery常見問題     
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);

更多高效jquery實踐經驗
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved