document.currentScript
场景:
如何得到正在执行的script元素?
"新"货色:
document.currentScript;
来源:
- 非标准,适用在Gecko 2.0+(FF4+)
- 返回当前正在执行的<script>元素
应用:
获取当前执行的script是否异步执行
if(document.currentScript.async){ //异步 }else{ //同步 }
在线例子:
----- 注意请用ff4+查看!!!
扩展阅读:
https://github.com/seajs/seajs/issues/468
https://developer.mozilla.org/en-US/docs/DOM/document.currentScript
https://developer.mozilla.org/zh-CN/docs/DOM/document.currentScript
相关推荐
longzhiwen 2020-10-16
tkernel 2020-08-18
lihn 2020-08-18
liuweiq 2020-07-08
Colourful 2020-07-03
sunzhihaofuture 2020-06-10
ZHANGRENXIANG00 2020-06-09
fangjack 2020-06-02
88961137 2020-06-01
marisafari 2020-05-29
jiaguoquan00 2020-05-27
心得笔记 2020-05-11
fanhuasijin 2020-04-17
四叶草 2020-03-24
juanjuanwang 2020-03-23
81224450 2020-01-24
程序员俱乐部 2020-01-11
baynkbtg 2020-01-10