如何构建Jquery / Html项目?

时间:2013-07-19 03:17:34

标签: javascript jquery html flex

我是Flex / Action Script Developer。我开始学习Jquery和Html。我想使用jquery来构建项目..

让我举一些示例我在Flex中的方式。


           Header (separate Mxml /module swf file)

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

    Footer(Separate mxml/module swf file)

如何在jQuery和HTML中实现相同类型或类似的模块化概念?

1 个答案:

答案 0 :(得分: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/