【1】onfocus = "this.blur()"//得到焦點時,失去焦點
e.g. <a href="#" onfocus = "this.blur()">test</a>
【2】使用HTML標籤的特性 hidefocus
e.g. <a href="#" hidefocus>test</a>
【注意】由於使元素失去焦點後,該元素將無法通過Tab鍵選中,所以不到萬不得已,不要這麼操作。
【1】onfocus = "this.blur()"//得到焦點時,失去焦點
e.g. <a href="#" onfocus = "this.blur()">test</a>
【2】使用HTML標籤的特性 hidefocus
e.g. <a href="#" hidefocus>test</a>
【注意】由於使元素失去焦點後,該元素將無法通過Tab鍵選中,所以不到萬不得已,不要這麼操作。