2017-07-12 7 views

答えて

0

あなたは文書化するためにバックフォーカスをもたらすことができる

window.addEventListener('blur', function() { 
    setTimeout(function() { 
     if(document.activeElement === document.getElementById('frame_id')) { 
      setTimeout(window.focus, 5); 
     } 
    }, 10); 
}); 
関連する問題