還記得jQuery如何使用的么?Sea.js也是如此。例子在這里可以找到,用anywhere起個靜態(tài)服務(wù)來看看。
// File:js/module/greet.js
define(function (require, exports) {
function helloPython() {
document.write("Hello,Python");
}
function helloJavaScript() {
document.write("Hello,JavaScript");
}
exports.helloPython = helloPython;
exports.helloJavaScript = helloJavaScript;
});
如果你對Node.js非常熟悉,你可以把這個模塊理解為Node.js的模塊加上一個Wrapper。
<!-- File:index.html -->
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Getting start with Sea.js</title>
<!-- 引入seajs-->
<script src="http://atts.w3cschool.cn/attachments/image/wk/helloseajs/sea.js"></script>
</head>
<body>
</body>
</html>
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Getting start width Sea.js</title>
<!-- 引入seajs-->
<script src="http://atts.w3cschool.cn/attachments/image/wk/helloseajs/sea.js"></script>
<script>
seajs.use(['/js/module/greet'], function (Greet) {
Greet.helloJavaScript()
})
</script>
</head>
<body>
</body>
</html>
看到頁面上輸出的Hello,JavaScript
么,這確實太簡單了!
更多建議: