阅读排行榜

RstarYan 2019-05-13 16:56 阅读:4095 评论:0 推荐:0
RstarYan 2018-05-18 14:18 阅读:2807 评论:13 推荐:13
RstarYan 2020-05-07 16:58 阅读:2719 评论:0 推荐:1
RstarYan 2018-12-21 16:36 阅读:2701 评论:0 推荐:11
RstarYan 2018-04-18 11:09 阅读:1688 评论:0 推荐:5
$(function(){ $('#blogTitle h1').addClass('bounceInLeft animated'); $('#blogTitle h2').addClass('bounceInRight animated'); // 删除反对按钮 $('.buryit').remove(); initCommentData(); }); function initCommentData() { $('.feedbackItem').each(function() { var text = $(this).find('.feedbackListSubtitle .layer').text(); // 将楼层信息放到data里面 // $(this).find('.blog_comment_body').attr('data-louceng', text.replace(/^#/g, '')); if($(this).find('.feedbackListSubtitle .louzhu').length>0) $(this).addClass('myself'); var avatar = $(this).find('> .feedbackCon > span').html() || 'https://pic.cnblogs.com/face/sample_face.gif'; $(this).find('> .feedbackCon > .blog_comment_body').append('') }); } $(document).ajaxComplete(function(event, xhr, settings) { // 监听获取评论ajax事件 if(settings.url.indexOf('/mvc/blog/GetComments.aspx') >= 0) { initCommentData(); } });