初期seajs
3585 ワード
SeaJSは、Common JS規格に準拠したJavaScriptモジュールローディングフレームであり、JavaScriptのモジュール開発およびローディング機構を実現することができる.
SeaJS自体はKISSコンセプトに従って開発されています.
以下に対応するモジュールを簡単に定義します.
http://web322-szb.iteye.com/blog/1742930
回転:http://www.zhangxinxu.com/wordpress/2013/04/js-mousewheel-dommousescroll-event/
http://blog.csdn.net/it_マン/アート/detail/7782623
SeaJS自体はKISSコンセプトに従って開発されています.
以下に対応するモジュールを簡単に定義します.
//init.js
define(function(require,exports,module){
var m1=require('module1');
exports.initPage = function () {// exports nodejs
document.querySelector(".content").innerHTML = m1.run();
}
});
//module1.js
define(function (require,exports,module){
exports.run = function () {
return "somethin' from module1!";
}
});
//web page
<script src="js/sea.js"></script>
<script type="text/javascript">
seajs.use('./js/init, function (init) {// , ./, require require.async,
init.initPage();
});
</script>
<body>
<p class="content"></p>
</body>
<!-- seajs -->
// jquery
//myjquery.js
define(
function
(require, exports, module) = {
// jquery.js copy ...
module.exports = $.noConflict(
true
);
});
//jqueryプラグインの呼び出しhttp://web322-szb.iteye.com/blog/1742930
回転:http://www.zhangxinxu.com/wordpress/2013/04/js-mousewheel-dommousescroll-event/
http://blog.csdn.net/it_マン/アート/detail/7782623