假設我有一個UMD模塊像這樣(保存在「JS/mymodule.js」):如何在瀏覽器中使用UMD沒有任何額外的依賴
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.mymodule = global.mymodule || {})));
}(this, function (exports) { 'use strict';
function myFunction() {
console.log('hello world');
}
}));
我怎樣才能在使用這個模塊這樣的HTML文件? (沒有requirejs,commonjs,systemjs等...)
<!doctype html>
<html>
<head>
<title>Using MyModule</title>
<script src="js/mymodule.js"></script>
</head>
<body>
<script>
/* HOW TO USE myFunction from mymodule.js ??? */
</script>
</body>
</html>
非常感謝您的任何幫助。
恐怕你把UMD和AMD混在一起了。 –