Oct
4
用jQuery去除链接虚线
wxxslt , 20:08 , JS , Comments(0) , Trackbacks(0) , Reads(495) , Via Original
Large | Medium | Small
Large | Medium | Small
$(function(){
$('a,input[type="button"],input[type="submit"]').bind('focus',function(){
if(this.blur){ //如果支持 this.blur
this.blur();
};
});
});
jQuery表格筛选
用 js 模拟 css 


