var supportDOMFocusIn = false
      try{
        document.addEventListener("DOMFocusIn",function(){
          supportDOMFocusIn = true
        },false);
        var event = document.createEvent("UIEvent");
        event.initEvent("DOMFocusIn", false, true );
        document.dispatchEvent(event)
      }catch(e){}
      alert( supportDOMFocusIn)

相关文章:

  • 2022-12-23
  • 2022-01-20
  • 2021-10-16
  • 2022-12-23
  • 2022-12-23
  • 2021-09-24
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-06
相关资源
相似解决方案