첨부파일 https://imweb.eond.com/coding/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>
코멘트 1
접기/펴기 | 댓글 새로고침
  • 이온디
    <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>
    오전 01:11
    댓글