.focus()然後在您的頁面上選擇其他任意元素.blur()。由於只能有一個元素擁有焦點,焦點會轉移到該元素,然後被移除。
.focus()
.blur()
答案: document.activeElement
document.activeElement
#要實現你想要的效果,使用document.activeElement.blur()
document.activeElement.blur()
#如果需要支援Firefox 2,也可以使用以下程式碼:
function onElementFocused(e) { if (e && e.target) document.activeElement = e.target == document ? null : e.target; } if (document.addEventListener) document.addEventListener("focus", onElementFocused, true);
.focus()
然後在您的頁面上選擇其他任意元素.blur()
。由於只能有一個元素擁有焦點,焦點會轉移到該元素,然後被移除。答案:
document.activeElement
#要實現你想要的效果,使用
document.activeElement.blur()
#如果需要支援Firefox 2,也可以使用以下程式碼: