2. document.activeElement and have following code to update the element in case of old browser which do not support the property var focusedElement; document.addEventListener("focus", function(e) { focusedElement = e.target; }, true); document.addEventListener("blur", function(e) { focusedElement = null; }, true); Now my question is which one is more correct/easy/efficient approach of above two? why? Thanks all,
以上就是which approach is more correct to get element in document with focus?的详细内容,更多请关注web前端其它相关文章!
未经允许不得转载:web前端首页 » JavaScript 答疑