A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://developer.mozilla.org/zh-CN/docs/Web/API/Document/currentScript below:

Document:currentScript 属性 - Web API

Document:currentScript 属性

Baseline Widely available

Document.currentScript 属性返回当前正在处理其脚本(并且该脚本不是 JavaScript 模块)的 <script> 元素。(对于模块,请改用 import.meta)。

值得注意的是,如果脚本中的代码是作为回调或事件处理器调用的,则不会引用 <script> 元素;它只会在最初处理时引用该元素。

值

HTMLScriptElement 或 null。

示例

此示例检查脚本是否正在异步执行:

if (document.currentScript.async) {
  console.log("异步执行");
} else {
  console.log("同步执行");
}

查看在线示例

规范 浏览器兼容性 参见

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4