當節點具有tabIndex設置(非-1)時,單擊它將使焦點聚焦。刪除tabIndex設置應該停止該行爲,因此點擊不起作用。在webkit上使可聚焦元素無焦點對焦
但是,在webkit上,一旦節點具有tabIndex,即使在刪除tabIndex後,該節點仍然可以單擊並聚焦。設置tabIndex = -1也具有相同的點擊問題。
任何人都知道這個問題的解決方法?
<div id="one">one (no initial tabindex)</div>
<div id="two" tabindex=0>two (initially tabindex=0)</div>
<button type=button onclick="document.getElementById('one').setAttribute('tabindex', 0)">set tabindex on first div</button>
<button type=button onclick="document.getElementById('one').removeAttribute('tabindex', 0)">remove tabindex on first div</button>
<button type=button onclick="document.getElementById('two').removeAttribute('tabindex', 0)">remove tabindex on second div</button>
<button type=button onclick="document.getElementById('one').setAttribute('tabindex', -1)">set tabindex=1 on first div</button>
<button type=button onclick="document.getElementById('two').setAttribute('tabindex', -1)">set tabindex=1 on second div</button>
剛剛偶然發現了這個問題我自己...該死的討厭,它。 – RwwL 2010-09-22 14:47:32
什麼版本的Safari/WebKit? – 2011-01-06 01:06:42
剛剛在Chrome 8.0.552.231上試過,它仍然發生。不確定我最初測試的webkit版本是什麼。 – 2011-01-12 07:58:40