<html>
<body>
<script src="Js/Index.js"></script>
<script type="text/javascript">
$(function () {
index.init();
})
</script>
</body>
</html>
var index = (function () {
//加载页面事件
var _initPageEvent = function () {
}
return {
init: function () {
_initPageEvent();
}
}
})();