联系我们
简单又实用的WordPress网站制作教学
当前位置:网站首页 > 程序开发学习 > 正文

Uncaught SyntaxError: Unexpected token ‘export‘

作者:小教学发布时间:2023-10-02分类:程序开发学习浏览:97


导读:index.html中引入一个下方这种结构的js文件,但是报错了constfn=(()=>{console.log("jinlaile");})();...

index.html中引入一个下方这种结构的js文件, 但是报错了

const fn = (() => {
  console.log("jinlaile");
})();

export default fn;

在这里插入图片描述

原因及解决方案:

览器虽然支持了es6,但是不支持es6的Module直接使用,需要在script标签里加上 type=“module”,让浏览器很好的去认识它。

<script type="module" src="js/*.js"></script>



标签:Uncaught SyntaxError: Unexpected token ‘export‘_小白变怪兽的博客


程序开发学习排行
最近发表
网站分类
标签列表