도와주세요
본문
<span class="cursor" title="새로고침" onclick="apms_page('viewcomment','<?php echo $comment_url;?>');">
<i class="fa fa-refresh fa-lg"></i><span class="sound_only">댓글 새로고침</span>
</span>
위 코드를 특별한 액션 없이 ( 클릭없이 ) 자동으로 1초마다 갱신시켜 주고 싶어요.
어떻게 해야 할까요?
댓글새로고침을 자동으로 하고싶어서요
고수님들 부탁드립니다.
답변 2
<span class="cursor refresh-comment" title="새로고침" onclick="apms_page('viewcomment','<?php echo $comment_url;?>');" data-comment-url="<?=$comment_url?>"> <script> var refresh_comment = []; $(".refresh-comment").each(function (i,e) { var comment_url = $(this).data('comment-url'); refresh_comment[i] = setInterval(function() { apms_page('viewcomment',comment_url); }, 1000); }) </script>
아미나가 없어서 테스트는 못해봤습니다.
<span class="cursor" title="새로고침" onclick="apms_page('viewcomment','<?php echo $comment_url;?>');">
<i class="fa fa-refresh fa-lg"></i><span class="sound_only">댓글 새로고침</span>
</span>
<script>
setTimeout(function() {
apms_page('viewcomment','<?php echo $comment_url;?>');
}, 1000);
</script>
답변을 작성하시기 전에 로그인 해주세요.