我是ES6(ECMAScript 6)的新手,我想在浏览器中使用其模块系统。我阅读了Firefox和Chrome支持的ES6,但是使用时出现以下错误export
Uncaught SyntaxError: Unexpected token import
我有一个test.html文件
<html>
<script src="test.js"></script>
<body>
</body>
</html>
和一个test.js文件
'use strict';
class Test {
static hello() {
console.log("hello world");
}
}
export Test;
为什么?