반응형
스타일시트를 통한 일괄 적용
A { selector-dummy:expression(this.hideFocus=true); }
FF, 파이어폭스용
A:active, A:focus { outline:0; } 또는
A { -moz-outline-style:none; }
개별적으로 추가
링크마다 onfocus="blur()" 또는 onfocus="this.blur()"
스크립트를 이용한 방법 (1)
function bluring() {
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG")
document.body.focus();
}
document.onfocusin=bluring;
스크립트를 이용한 방법 (2)
function autoBlur() {
if(event.srcElement.tagName!="BODY") {
if(typeof(document.body)=='object')document.body.focus();
document.onfocusin = null;
}
}
document.onfocusin=autoBlur;
A { selector-dummy:expression(this.hideFocus=true); }
FF, 파이어폭스용
A:active, A:focus { outline:0; } 또는
A { -moz-outline-style:none; }
개별적으로 추가
링크마다 onfocus="blur()" 또는 onfocus="this.blur()"
스크립트를 이용한 방법 (1)
function bluring() {
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG")
document.body.focus();
}
document.onfocusin=bluring;
스크립트를 이용한 방법 (2)
function autoBlur() {
if(event.srcElement.tagName!="BODY") {
if(typeof(document.body)=='object')document.body.focus();
document.onfocusin = null;
}
}
document.onfocusin=autoBlur;
반응형
'Web > WEB기본' 카테고리의 다른 글
[펌]HTML5와 HTML4의 차이점 (0) | 2008.06.25 |
---|---|
LightWindow 라이트박스의 업그레이드 (0) | 2008.06.10 |
[펌]Yahoo User Interface Library(YUI) (0) | 2008.04.24 |
javascript 이벤트 핸들러 (0) | 2008.04.22 |
외부문서 불러오기(AJAX) (0) | 2008.03.11 |
자스크립트로 마우스 위치 얻기(IE, FF) (0) | 2008.03.04 |
[펌]웹해킹 시리즈 7) file upload 알고리즘 시의 주의할점 -4 (0) | 2008.01.23 |
[펌]RFC 1945 Korean Edition(HTTP/1.0 Korean Version 3.0) (0) | 2008.01.11 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)