자바 스크립트 에러..

국내에 웹 사이트들이 웹 표준을 지키고 OS나 브라우저와 관계 없이 접근성을 향상 시키기 위한 사이트 버그 신고 및 문제 해결을 위한 게시판입니다.
Post Reply
궁금

자바 스크립트 에러..

Post by 궁금 »

Error: comment is not defined
Source File: javascript:toggle(comment)



자바스크립트 소스는.

<script language="JavaScript">
function toggle(e) {
        if (e.style.display == "none")
                { e.style.display = ""; }
        else         { e.style.display = "none"; }
        }
</script>


어떻게 수정하면 될가요..;;;
토끼군

Re: 자바 스크립트 에러..

Post by 토끼군 »

comment라는 id를 가진 객체를 접근하려는 것이라면,
javascript:toggle(document.getElementById('comment'))라고 하면 됩니다.

좀 더 편하게 쓰려면 아예 toggle 함수에서 e.style.display를 document.getElementById(e).style.display로 고치면 됩니다.
(이 경우, javascript:toggle('comment')라고 문자열을 넣어 주어야 겠지요.)

자세한 내용은 <a href=http://mozilla.or.kr/community/view.php?id=webbug&no=21 target=_blank>http://mozilla.or.kr/community/view.php ... g&no=21</a> 을 참고하세요.
Cialis

Cialis

Post by Cialis »

Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest