Last active
December 15, 2015 14:39
-
-
Save guo-yu/5276238 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 引入menkr cdn 提供的seajs源 和 配置文件 --> | |
<script src="http://cdn.menkr.com/sea.js" data-config="config/config.js" charset="utf-8"></script> | |
<script> | |
// 使用别名(alias)加载组件 | |
seajs.use(['jquery', 'moment'], function($, moment) { | |
$(document).ready(function() { | |
console.log('Menkr CDN 上线时间距离现在:') | |
console.log(moment("20130329", "YYYYMMDD").fromNow()) | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment