$(function() { // 回顶部 $(window).scroll( function() { if($(this).scrollTop() >= 100 ){ $("#scrollTop").show(); } else { $("#scrollTop").hide(); } } ); if($(window).scrollTop() >= 100 ){ $("#scrollTop").show(); } else { $("#scrollTop").hide(); } $("#scrollTop").click(function(){$(window).scrollTop(0);return false;}); // 评论数获取 comment.count(); }); /** * 评论 */ comment = { /** * 删除评论 * * @param comment_id */ oper_del:function(comment_id,article_id){ if(window.confirm('你确定要删除该评论吗?')){ jQuery.ajax({ type:'POST', url:jflyfox.BASE_PATH + 'front/comment/del', data:"model.id=" + comment_id + "&model.article_id=" + article_id, success:function(data){ if(data.status==1){ $('#comment_'+comment_id+'_'+article_id).remove(); var count = parseInt($('[name="count_comment"]').val()); $('[name="count_comment"]').val(count - 1); $('#count_comment_show').html("评论(" + (count - 1) + ")"); } else { alert('删除失败:'+data.msg); } $('[name="comment"]').val(''); }, error:function(html){ var flag = (typeof console != 'undefined'); if(flag) console.log("服务器忙,提交数据失败,代码:" +html.status+ ",请联系管理员!"); alert("服务器忙,提交数据失败,请联系管理员!"); } }); } } /** * 保存评论: 内容 文章id 回复人id 文章创建人id 文章题目 */ ,oper_save:function(comment_content,article_id,reply_userid,create_id , article_title){ article_title = article_title || ''; var urlParams = "model.content=" + comment_content + "&model.article_id=" + article_id + "&model.reply_userid=" + reply_userid+ "&model.create_id=" + create_id; jQuery.ajax({ type:'POST', url:jflyfox.BASE_PATH + 'front/comment/save', data:urlParams, success:function(data){ if(data.status==1){ var createTime = data.create_time; var comment_id = data.comment_id; var title_url = data.title_url||''; var username = data.create_name; var reply_username = data.reply_username; var content = data.content; title_url = (title_url=='')?(jflyfox.BASE_PATH + 'static/images/user/user.png'):title_url; var htmlText = '
'; htmlText += '
'; htmlText += ''; if(article_title != ''){ htmlText += ''+article_title+''; htmlText += '文章中'; } htmlText += ''+username+''; // 回复 if(reply_userid > 0 ) { htmlText += '回复'; htmlText += '' + reply_username + ''; htmlText += '
'; } htmlText += '
'; htmlText += ''+content+''; htmlText += '
'; htmlText += '
'; htmlText += ''+createTime+''; htmlText += '删除'; htmlText += '
'; $('.comment-list').prepend(htmlText); var count = parseInt($('[name="count_comment"]').val()); $('[name="count_comment"]').val(count + 1); $('#count_comment_show').html("评论(" + (count + 1) + ")"); } else { alert('保存失败:'+data.msg); } $('[name="comment"]').val(''); }, error:function(html){ var flag = (typeof console != 'undefined'); if(flag) console.log("服务器忙,提交数据失败,代码:" +html.status+ ",请联系管理员!"); alert("服务器忙,提交数据失败,请联系管理员!"); } }); } ,count:function(){ if ($("#web_message").length <= 0){ return; } jQuery.ajax({ type:'POST', url:jflyfox.BASE_PATH + 'front/comment/count', success:function(data){ if(data.status==1){ if(data.count > 0 ){ $('#web_message').hide(); $('#web_message').text('我的消息('+data.count+')'); $('#web_message').css('font-weight','bold'); $('#web_message').css('color','green'); $('#web_message').show(500); } else { // 如果已经读过,那么恢复初始化 if($('#web_message').text() != '我的消息') { $('#web_message').text('我的消息'); $('#web_message').css('font-weight',''); $('#web_message').css('color','#454545'); } } } else { console_log('获取评论失败:'+data.msg); } }, error:function(html){ var flag = (typeof console != 'undefined'); if(flag) console.log("服务器忙,提交数据失败,代码:" +html.status+ ",请联系管理员!"); // alert("服务器忙,提交数据失败,请联系管理员!"); } }); // 压力太大了就改大点 window.setTimeout('comment.count()',600*1000); } };