게시판 댓글에 답변 달기
게시판 댓글에 답변을 달려고 답변을 눌렀다가 답변을 안쓰고
원글에 답변을 달려고 하면 댓글입력폼이 원상복구 되지 않아 새로고침을 해야 하는 번거로움이 있어서
view_comment.skin.php 파일을 좀 수정했습니다.
수정된 게시판 테스트 주소
http://work.wwiz.kr/free
//게시판 댓글 답변 수정 버튼 수정-->
--data-cmtid, data-cmtkind 추가
<?php if ($list[$i]['is_reply']) { ?><span class="cmt-vc-icon cmt-icon-write" data-cmtid="<?php echo $comment_id ?>" data-cmtkind="c">답변</span><?php } ?>
<?php if ($list[$i]['is_edit']) { ?><span class="cmt-vc-icon cmt-icon-write" data-cmtid="<?php echo $comment_id ?>" data-cmtkind="cu">수정</span><?php } ?>
댓글목록 부분에
<div id="cf_<?php echo $comment_id?>"></div> <--추가된 부분
<input type="hidden" value="<?php echo strstr($list[$i]['wr_option'],"secret") ?>" id="secret_comment_<?php echo $comment_id ?>">
<textarea id="save_comment_<?php echo $comment_id ?>" style="display:none"><?php echo get_text($list[$i]['content1'], 0) ?></textarea>
<--js 스크립트 추가-->
$('.cmt-icon-write').on("click",function(){
var $this = $(this),
cmtid = $this.data('cmtid'),
work = $this.data('cmtkind'),
wf = $('#bo_vc_w');
if($this.hasClass('cmt-icon-open') === true) {
$('#w').val('c');
$('#comment_id').val('');
document.getElementById('wr_content').value = '';
document.getElementById('wr_secret').checked = false;
$this.removeClass('cmt-icon-open');
$('#bo_vc').after($(wf));
return false;
}
if(work == 'cu') {
document.getElementById('wr_content').value = document.getElementById('save_comment_' + cmtid).value;
if (typeof char_count != 'undefined') {
check_byte('wr_content', 'char_count');
}
if (document.getElementById('secret_comment_'+cmtid).value) {
document.getElementById('wr_secret').checked = true;
} else {
document.getElementById('wr_secret').checked = false;
}
} else {
document.getElementById('wr_content').value = '';
document.getElementById('wr_secret').checked = false;
}
$('.cmt-icon-write').removeClass('cmt-icon-open');
$this.addClass('cmt-icon-open');
$('#w').val(work);
$('#comment_id').val(cmtid);
$('#cf_'+cmtid).append($(wf));
});
댓글 5개
https://ye-ah.net/coding/3
간단하게 그누보드 함수인 comment_box를 통해 취소할수있습니다
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4417 | ||
| 2514 | 1년 전 | 902 | ||
| 2513 |
베리소프트
|
1년 전 | 619 | |
| 2512 |
|
1년 전 | 950 | |
| 2511 |
|
1년 전 | 1078 | |
| 2510 | 1년 전 | 1007 | ||
| 2509 | 1년 전 | 1058 | ||
| 2508 | 1년 전 | 1309 | ||
| 2507 | 1년 전 | 687 | ||
| 2506 | 1년 전 | 1253 | ||
| 2505 |
|
1년 전 | 1208 | |
| 2504 | 1년 전 | 1409 | ||
| 2503 | 1년 전 | 944 | ||
| 2502 | 1년 전 | 1070 | ||
| 2501 | 1년 전 | 1170 | ||
| 2500 |
welcome
|
1년 전 | 1078 | |
| 2499 |
하늘그루터기
|
1년 전 | 871 | |
| 2498 | 1년 전 | 1177 | ||
| 2497 | 1년 전 | 646 | ||
| 2496 | 1년 전 | 966 | ||
| 2495 |
|
1년 전 | 1419 | |
| 2494 | 1년 전 | 946 | ||
| 2493 | 1년 전 | 947 | ||
| 2492 | 1년 전 | 1155 | ||
| 2491 | 1년 전 | 1120 | ||
| 2490 | 1년 전 | 1090 | ||
| 2489 | 1년 전 | 1019 | ||
| 2488 | 1년 전 | 775 | ||
| 2487 |
|
1년 전 | 1212 | |
| 2486 | 1년 전 | 830 | ||
| 2485 | 1년 전 | 1007 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기