onfocus=blur(), onfocus=this.blur() 스타일 시트에 적용?
컨텐츠 정보
- 20,871 조회
- 34 추천
- 목록
본문
거누
음 자바 스크립트를 이용해서 한번만 써주면 됩니다.
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;
<a><img>태그일때 focus를 body로 ^^;;
음 자바 스크립트를 이용해서 한번만 써주면 됩니다.
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;
<a><img>태그일때 focus를 body로 ^^;;
관련자료
-
링크
댓글 0
등록된 댓글이 없습니다.