ฉันเพิ่งเริ่มใช้ES6 (ECMAScript 6) และฉันต้องการใช้ระบบโมดูลในเบราว์เซอร์ ฉันอ่าน ES6 ได้รับการสนับสนุนโดย Firefox และ Chrome แต่ฉันได้รับข้อผิดพลาดต่อไปนี้โดยใช้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;
ทำไม?