我正在测试 ES6 module并希望让用户使用onclick
以下方法访问一些导入的功能:
测试.html:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Module Test</title>
</head>
<body>
<input type="button" value="click me" onclick="hello();"/>
<script type="module">import {hello} from "./test.js";</script>
</body>
</html>
测试.js:
export function hello() {console.log("hello");}
当我单击按钮时,开发人员控制台显示:ReferenceError: hello is not defined。如何从module导入函数,以便它们可用作 onclick 函数?
我正在使用 Firefox 54.0 并dom.moduleScripts.enabled
设置为true
.