forked from RubyLouvre/mass-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
54 lines (49 loc) · 2.27 KB
/
index2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE HTML>
<html>
<head>
<title>sample by 司徒正美</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="mass.js">
</script>
<script>
$.require("$lang", function(){
console.log("xxxxxxxxxxxxxx")
})
</script>
<script type="text">
$.config({
alias:{
"$language":$.core.base + "lang.js"
}
});
$.log($.core.alias);//查看所有别名
$.require("$language,ready",function(){
$.log("已加载语言模块")
$.log($.modules);//查看所有模块
});
$.require("$event",function(){
$("body").dblclick(function(){
$.log("dblclick")
})
})
</script>
</head>
<body>
<h2>欢迎加入mass Framework团队!</h2>
<p>新人请先看<a href="http://rubylouvre.github.com/doc/index.html">文档</a>(有关加载的部分不要看)</p>
<p>模块加载部分可以看源码或这里的<a href="https://github.com/RubyLouvre/mass-Framework/issues?state=open">讨论</a></p>
<p>跳转到<a href="test/">单元测试页面</a>,用你的浏览器帮忙测试或添加新样例!</p>
<hr/>
<p>注意事项</p>
<ol>
<li>不要在代码中直接用console.log,以免在IE中报错,请改用$.log</li>
<li>/test是测试页面,大家可以为mass Framework增加新的单元测试,单元测试越多,就越易发现问题,有利于基础库的稳定。</li>
<li>大家在<a href="http://rubylouvre.github.com/doc/index.html">文档</a>看东西时,如果弹出 “ For security reasons, framing is not allowed”,请不要慌,这是因为对应的文档还没有放上去!</li>
<li>问:为啥还自己做页面啊,github不是可以生成主页么? <br/>
答: 我们更新太快了,github pages更新很慢,你提交后要等半小时才见效果
</li>
</ol>
<h3>重要学习资料</h3>
<p><a href="/pages/load.html">模块加载内部运作情况</a></p>
</body>
</html>