//去除超链接外的虚线框 window.onload = function () { for (var i = 0; i < document.links.length; i++) document.links[i].onfocus = function () { this.blur() } }