0

我是 Flex / 动作脚本开发人员。我开始学习 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 中实现相同或类似的模块化概念?

4

1 回答 1

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/

于 2013-07-19T04:10:41.463 回答