<script>
function autoblur() {
if(event.srcElement.tagName == "A") document.body.focus();
}
document.onfocusin = autoblur;
</script>
<head> 와 </head>사이에 넣기.
2) 방법
스크립트 말고 직접 넣으실때는 하이퍼 링크안에 넣기. ex) <a href="address"
onfocus=this.blur()>....</a>
'js' 카테고리의 다른 글
자바스크립트 알럿창 (0) | 2013.06.21 |
---|---|
css3 라운드 처리 ie6~9 가능 (0) | 2013.02.18 |
레이어팝업 이미지 클릭으로 다시 보지 않기 버튼 js 스크립트 (0) | 2012.10.29 |