我想使用JS库MathLive创建本地网页。
根据documentation,我下载了该库,并在其文件夹中创建了以下html文件:
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href="dist/mathlive.core.css" />
<link rel="stylesheet" href="dist/mathlive.css" />
</head>
<body>
<script type="module">
import MathLive from 'dist/mathlive.mjs';
</script>
</body>
</html>
dist文件夹与此HTML文件位于同一父文件夹中。但是,打开此文件时,浏览器显示以下错误:
TypeError:解决模块说明符时出错:dist / mathlive.mjs test.html:9:33
怎么回事?