[JS] remove the border when focus()

將網頁focus中的物件框線拿掉

 

當你點選連結或正按下按鈕時,該目標物旁邊就會出現不太雅觀的虛線框
如果要拿掉的話,只要加入一段 CSS 程式碼即可
a,area { blr:expression(this.onFocus=this.blur()) } /* for IE */
:focus { -moz-outline-style: none; } /* for Firefox */