|
|
|
20년 전
|
조회 1,820
|
|
|
|
20년 전
|
조회 1,844
|
|
|
|
20년 전
|
조회 1,757
|
|
|
|
20년 전
|
조회 1,788
|
|
|
|
20년 전
|
조회 2,088
|
|
|
|
20년 전
|
조회 1,810
|
|
|
|
20년 전
|
조회 1,800
|
|
|
|
20년 전
|
조회 1,949
|
|
|
|
20년 전
|
조회 1,707
|
|
|
|
20년 전
|
조회 2,264
|
|
|
|
20년 전
|
조회 2,001
|
|
|
|
20년 전
|
조회 1,968
|
|
|
|
20년 전
|
조회 2,188
|
|
|
|
20년 전
|
조회 1,842
|
|
|
|
20년 전
|
조회 1,814
|
|
|
|
20년 전
|
조회 2,244
|
|
|
|
20년 전
|
조회 1,853
|
|
|
|
20년 전
|
조회 1,720
|
|
|
|
20년 전
|
조회 1,715
|
|
|
|
20년 전
|
조회 1,786
|
댓글 3개
a:link, a:active, a:visited, a:hover {
text-decoration:none
}
</style>
위 부분을 <body> 가 시작되는 바로 위에 넣어주세요.
그리고 각 링크마다 onFocus="blur();" 를 넣어주시면 됩니다.
예를 들어 <a href="http://kr.yahoo.com" onFocus="blur();">야후로 가기</a>
링크마다 다줄려면은 엄청난 노가다를 해야겠네영 ㅠㅠ
혹시 홈페이지 전체에 적용 시키는 방법은 없을까용? ㅠㅠ
javascript.js 파일에 추가해 주시면 될겁니다....
function bluring(){
if(event.srcElement.tagName=="A") document.body.focus();
}
document.onfocusin=bluring;
수고하세요.^^