我用document.activeElement.href
獲得點擊標籤的目標位置。它的工作屬性在Firefox中,但不在鉻工作。document.activeElement.href不適用於鉻
我想要得到"href"
點擊(活動)元素位於其他函數外的位置。
這樣的:
function animate() {
alert(document.activeElement.href); //not working in chrome
});
非常感謝
編輯: 記住我不想用「這個」或$(本),因爲它不會在功能的元件之外的工作。 我知道我可以使用onclick="...."
然後使用"$(this)"
爲每個元素,但我不想這樣。
我的問題很簡單:
可我獲得點擊(活動)elementID的功能之外呢? (除火狐)
@Liam,你的鏈接說'activeElement'由Chrome瀏覽器支持2 (MDN [同樣說](https://developer.mozilla.org/en-US/docs/Web/API/document.activeElement),接受的回答稱Chrome 9+是一款顯然是一個錯誤)。 –
@FrédéricHamidi,抱歉必須誤讀它。我的壞 – Liam
@Nader,在調用'animate()'之前,你有沒有把焦點設置到另一個元素? –