2013-07-19 40 views
0

我是Flex/Action Script Developer。我開始學習JQuery和Html。我想使用jquery結構項目..如何構建Jquery/Html項目?

讓我舉一些例子,我在Flex中的做法。


  Header (separate Mxml /module swf file) 

Contents (separate mxml file/module Swf dynamically loaded.) 

Footer(Separate mxml/module swf file) 

我怎樣才能實現同種或jQuery和HTML類似的一種模塊化概念的?

+1

你有類似的頭部,身體在HTML儘管頭不是頭。你應該把身體內的可見內容。即標題,內容,頁腳全部在主體內。 Head有鏈接到css文件,js文件,標題和[meta標籤](http://en.wikipedia.org/wiki/Meta_element)。標題,內容和頁腳應該是''的一部分。 –

+0

歡迎來到StackOverflow,請閱讀本網站擅長的問題類型的幫助部分:http://stackoverflow.com/help。我投票結束這個問題,因爲它不是一個具體的編程問題,可以具體回答;但更多的是基於意見,很可能會引發辯論。 – JeffryHouser

回答

1

你可以嘗試

<html> 

<head> 
    <link href="your-css-file" /> 
</head> 

    <body> 

    <header> 
     // header contents here 
    </header> 

    <section id="page" role="main"> 
     // page contents here 
    </section> 


    <footer> 
     // footer contents here 
    </footer> 

    <script src="your-js-file"></script> 

    </body> 

</html> 

,然後,如果你想保持你的jQuery每節不同的結構化你的JS文件這樣

$(document).ready(function(){ 

    headerStuff(); 
    pageStuff(); 
    footerStuff(); 


    function headerStuff(){ 

     // do header stuff 

    } 

    function pageStuff(){ 

     // do page stuff 

    } 

    function footerStuff(){ 

     // do footer stuff 

    } 

}); 

我會建議尋找到以此來獲得更好的主意。其預設置爲你準備好編寫

http://html5boilerplate.com/