css中關於hideFocus的使用詳解

來源:互聯網
上載者:User
可能很有小夥伴看到標題都不知道是什麼意思,hideFocus即隱藏聚焦,具有使對象聚焦失效的功能,其功能相當於: onFocus=this.blur() 它的是一個布爾,如hideFocus=true。也可省略賦直接寫hideFocus。 今天我們就給大家詳細介紹下css中關於hideFocus的使用詳解!

css中hideFocus的用法

簡單說:hideFocus是對超連結外虛線框的設定!

hideFocus即隱藏聚焦,具有使對象聚焦失效的功能,其功能相當於:

onFocus="this.blur()"

它的值是一個布爾值,如hideFocus=true。也可省略賦值直接寫hideFocus。
你給的代碼如果沒有hideFocus,那麼滑鼠點擊該超連結,則外面出現一個虛線框,即為聚焦。而使用了hideFocus則不會有虛線框。
在IE下,需要在標籤 a 的結構中加入 hidefocus="true" 屬性。
示範:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HEAD><TITLE> Test </TITLE></HEAD><BODY><a href="#" hidefocus="true" title="XX">沒有虛線框</a><br><br><a href="#" title="XX">有虛線框</a></BODY></HTML>

而在FF等瀏覽器中則相對比較容易,直接給標籤 a 定義樣式 outline:none; 就可以了,即:

a {outline:none;}

或者

a{blr:expression(this.onFocus=this.blur());outline:none;}//支援IE

總結:

本文使用執行個體詳解了css中關於hideFocus的使用,相信大家也能夠輕鬆掌握了,希望對你的工作有所協助!

相關推薦:

hideFocus(小技巧)

<a>標籤中 href="/" 和 hideFocus="true"

css中關於hideFocus的使用詳解

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.