博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

IE, FF 去除激活链接虚线边框

Posted on 2008-12-01 10:16  周末  阅读(178)  评论(0编辑  收藏  举报

IE:onfocus="this.blur()" 或 hidefocus = "true"

FF: css用outline:none;

使用
document.onselectstart = function() {return false;};和
document.onmousedown = function (event) {event.preventDefault ()};