簡體   English   中英

IE不尊重<label>內部</label> <anchor>

[英]IE doesn't respect <label> within <anchor>

所以我發現IE(即使是當前的10和11)不支持錨標簽中的標簽......但是DOES支持所述標簽內的onclick動作。 當我更新菜單系統並希望使用標簽將菜單描述與關聯的快捷方式分開時,請進入此狀態。 “重定向/處理”模式窗口很好,但事情只是坐在那里。

<a target="_blank" href="http://www.google.com" onclick="console.log('you clicked me')">
    <label>I am a first label</label>
    <label>Look @ me, I'm second!</label>
</a>

當我潛入這個奇怪的話題時,我發現標簽之間的空白表現得恰到好處......只有當我在標簽上盤旋時,我的能力才能離開這里。

那么......解決方案是什么?

使用跨度...就是這樣......

<a target="_blank" href="http://www.theonion.com" onclick="console.log('you clicked me')">
    <span>I am another first label</span>
    <span>Look @ me, I'm another second!</span>
</a>

http://jsfiddle.net/bdGPB/1/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM