Tôi mới sử dụng ES6 (ECMAScript 6) và tôi muốn sử dụng hệ thống mô-đun của nó trong trình duyệt. Tôi đọc ES6 được hỗ trợ bởi Firefox và Chrome, nhưng tôi gặp lỗi sau khi sử dụngexport
Uncaught SyntaxError: Unexpected token import
Tôi có một tệp test.html
<html>
<script src="test.js"></script>
<body>
</body>
</html>
và một tệp test.js
'use strict';
class Test {
static hello() {
console.log("hello world");
}
}
export Test;
Tại sao?