ajax 게시판에서 댓글 입력하면 엉뚱한 위치로 갑니다
본문
기존 게시판 스킨을 ajax가 되게 수정했습니다
새 댓글을 달거나 댓글을 수정하면 엉뚱한 위치로 갑니다
view_comment.skin.php 을 어떻게 수정해야 하나요?
function fviewcomment_submit(f)
// ajax comment system
$.ajax({
url: f.action,
type: 'POST',
data: $(f).serialize(),
dataType: 'html',
})
.done(function(str) {
var tempDom = $('<output>').append($.parseHTML(str))
var title = $('title', tempDom).text()
if (title === '') {
// 1. commentBox 원위치
comment_box('', 'c')
// 2. commentBox Form 리셋
f.reset()
// 3. 코멘트 출력
$.ajax({
url: str,
type: 'GET',
dataType: 'html'
})
.done(function(str2) {
var tempDom2 = $('<output>').append($.parseHTML(str2))
$('ajaxcomment').replaceWith($('ajaxcomment', tempDom2))
var comment_bottom = $("#bo_vc").offset().top + $("#bo_vc").height();
$("html, body").animate({scrollTop:comment_bottom}, '500');
})
}
<?php if ($is_guest) { ?>
// 4. 캡차 리로드
$('#captcha_reload').trigger('click')
<?php } ?>
document.getElementById("btn_submit").disabled = ""
})
return false;
}
!-->
답변 1
fixed된 header nav 에 가리는 것 같네요
var comment_bottom = $("#bo_vc").offset().top + $("#bo_vc").height() - $('fixed된헤더네비셀렉터').height();
그런데 이건 textarea 로 가는데
댓글 입력하고 리턴받은 dom append하고 append 된 댓글로 가야하지 않나요?
답변을 작성하시기 전에 로그인 해주세요.