HTMLScriptElement:noModule 属性
noModule
是 HTMLScriptElement
接口的一个布尔值属性,它指示在支持 ES 模块 的浏览器中是否应该执行脚本。实际上,这可用于为不支持 JavaScript 模块的旧版浏览器提供后备脚本。
它反映了 <script>
元素的 nomodule
属性。
值
一个布尔值,true
表示在支持 ES 模块的浏览器中不应执行脚本,false
则表示应执行。
示例
html
<script id="el" nomodule>
// If the browser supports JavaScript modules, the following script will not be executed.
console.log("The browser does not support JavaScript modules");
</script>
js
const el = document.getElementById("el");
console.log(el.noModule); // Output: true
规范
规范 |
---|
HTML 标准 # dom-script-nomodule |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。