DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery常見問題 >> 高效jquery之維持代碼的可讀性
高效jquery之維持代碼的可讀性
編輯:JQuery常見問題     
伴隨著精簡代碼和使用鏈式的同時,可能帶來代碼的難以閱讀。添加縮緊和換行能起到很好的效果。

// 糟糕
$second.html(value);
$second.on('click',function(){
alert('hello everybody');
}).fadeIn('slow').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