a{blr:expression(this.onFocus=this.blur())}
blr没有特殊意思,expression 条件,这句话的意思是链接 a 在获得焦点的同时失去焦点。
如果你用的是图片链接什么的,他不会显示周边的虚线。
此段代码的作用是清除 A 链接在点击时会产生虚线的问题。
三种写法:
1、正常写法
1
|
< a href="#" onfocus=this.blur();>链接标题</ a > |
2、CSS写法
1
|
a{blr:expression(this.onFocus=this.blur());} |
3、JS写法
1
2
3
4
5
6
7
|
<script type= "text/javascript" > var __aObj = document.getElementsByTagName( "a" ); var __length = __aObj.length; for ( var i = 0; i < __length; i++) { __aObj[i].onfocus = function () { this .blur(); } } </script> |
http://blog.wanghaida.com/ablrexpressionthis-onfocusthis-blur/