(a)
| 2927 | } |
| 2928 | // 插入位置 5 时,排除 <script> <style> <link> 标签 |
| 2929 | function toE5pop(a) { |
| 2930 | if (a.length === 0) return |
| 2931 | let b = a.pop(); |
| 2932 | if (b.tagName === 'SCRIPT' || b.tagName === 'STYLE' || b.tagName === 'LINK') { |
| 2933 | return toE5pop(a); |
| 2934 | } |
| 2935 | return b |
| 2936 | } |
| 2937 | // 滚动条事件 |
| 2938 | function windowScroll(fn1) { |
| 2939 | var beforeScrollTop = document.documentElement.scrollTop || document.body.scrollTop, |
no outgoing calls
no test coverage detected