묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
스케치북5 댓글부분만 새로고침하기
2014.12.13 14:50
디시인사이드처럼 댓글부분만 새로고침하는 버튼을 넣는게 목표입니다 ㅠ
처음 보고 따라한 예제는 https://www.xpressengine.com/tip/22246337 였고
그다음은 http://victoryan.tistory.com/33 이거였는데
refresh로 해야할거같아서
스케치북 _comment.html에
<a class="ui_font bubble" href="javascript:;" onclick="javascript:refesh('colist')" title="{$lang->comment} {$lang->cmd_view}">Comments <b>'{$oDocument->getCommentcount()}'</b></a>
이렇게 넣어주고 댓글리스트출력부분에 <ul id="colist" class="fdb_lst_ul {$mi->fdb_hide}">
스크립트는
<script>
function refresh(href) {
jQuery('#colist').load(href);
}
</script>
이렇게 해서 _comment.html 맨밑에 넣었습니다.
역시 안되네요 ㅠㅠ 무반응이고... ajax보드애드온 적용중인데 comment부분만 새로고침할수있는 방법 없을까요??