
$(function () {
    //滚动显示再加载
    var ishow = false;
    $(window).scroll(function () {
        onscrool();
    });
    function onscrool() {
        if(!ishow && $('#comment_div').offset().top<$(window).height()+$(document).scrollTop())
        {
            if ($('#comment_div').html().toLowerCase().indexOf('iframe') == -1) {
                $('#comment_div').html('<if' + 'rame src="' + DTPath + 'api/comment.php?mid=' + module_id + '&itemid=' + item_id + '&proxyurl=' + proxyurl + '" name="destoon_comment" id="des' + 'toon_comment" style="width:100%;height:124px;" scrolling="no" frameborder="0"></if' + 'rame>');
            }
            ishow = true;
        }
    }
    onscrool();

    //获取评论数
    if ($('.comment_count').length > 0) {
		$.ajax({
			url: '/api/comment.php',
			data: {
                action: 'getcount',
                mid: module_id,
                itemid: item_id
			},
			dataType: 'json',
			error: function () {
			},
			success: function (data) {
				if(data.error==0)
				{
                    $('.comment_count').html(data.count);
				}
			}
		});
	}
});
