[Script] 게시판 등 에서 웹페이지에서 특정 부분 감췄다보여주기 - 레이어 토글 1
2004.06.04 18:30
196
https://eond.com/20492
    <script>
function toggleD(obj) {
if (obj.style.display == 'none') obj.style.display = ''; else obj.style.display = 'none'; }
</script>

<? $i++ ?>
<a style='cursor:hand' onclick=toggleD(comment_<?=$i?>);>comment</a>

<div id=comment_<?=$i?> style='display:none'>
내용
</div>

라이믹스는 이온디와 함께

  • 2013.08.09 01:11
    베스트
    <script> 
    function toggleD(obj) { 
    if (obj.style.display == 'none') obj.style.display = ''; else obj.style.display = 'none'; } 
    </script> 


    <a style='cursor:hand' onclick="toggleD(comment);">comment</a>

    <div id="comment" style='display:none'>
    내용
    </div>
닫기

마이페이지

로그인을 해주세요