具体使用方式:
<script type="module" src="app.js">
<script nomodule src="bundle.js">
第一行: type="module" 是新扩展的 type
第二行: nomodule 是新扩展的属性,在 v61+ 版本浏览器中,对应<script>会被忽略,而低版本的此行不会被忽略(上一行却会被忽略)
具体使用方式:
<script type="module" src="app.js">
<script nomodule src="bundle.js">
第一行: type="module" 是新扩展的 type
第二行: nomodule 是新扩展的属性,在 v61+ 版本浏览器中,对应<script>会被忽略,而低版本的此行不会被忽略(上一行却会被忽略)
© 著作权归作者所有