firefox 的 event.currentTarget 和 ie 的 document.activeElement 這兩個完全含義不一致的對象卻被捆綁在一起做成了浏覽器兼容代碼。 大家在google搜索的時候 都會發現 document.activeElement || event.currentTarget 的用法。
其實這樣的用法是錯誤的,因為這兩個屬性的意義都不一樣。
event.currentTarget
Identifies the current target for the event, as the event traverses the DOM.
識別當前事件觸發的dom
document.activeElement
Gets the object that has the focus when the parent document has focus.
獲得當前focus的對象
例子
<script type="text/javascript">最後測試補充:後來測試了一下 document.activeElement 的支持程度,發現四大浏覽器safari除外, ie firefox opera都提供了這個對象的支持。但是有點需要注意的,上面的例子中 opera 會把圖片作為 可以 focus的對象。導致document.activeElement的結果不一致...