//by 司徒正美
function getInteractiveScript(){
    if(document.currentScript){
        return document.currentScript;
    }
    var els = document.getElementsByTagName("script");
    for(var i = 0, el; el = els[i++];){
        if (el.readyState === 'interactive') {
            return el
        }
    }
    return null
}

相关文章:

  • 2021-09-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2021-11-28
  • 2021-08-31
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-12
  • 2021-10-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案