我是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中实现相同类型或类似的模块化概念?
答案 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
}
});
我建议使用它来获得更好的主意。它已预先设置并准备好您编码