jquery前端评论插件模板

查看路径:https://eight1302.github.io/comments/view/index.html

源代码:https://github.com/eight1302/comments

js代码:


$(".btn_send").on('click',function(){
var now = time()
//获取评论信息
var text_send = $("#text_send").val();
if(text_send == ""){
return false;
}
var html;
html = '
'+
'
'+
''+
'
'+
'
'+
'
'+
'

匿名

'+
'
'+
''+now+'    '+
'北京'+
'
'+
'

'+text_send+'

'+
''+
'
'+

'
'+
'
'+
''+
'
提交
'+
'
'+
'
'+
'
';
$(".tent_info").append(html);
$(".text_send").val("");
})


$(".content_text").show();
$(".tent_info").on('click','.btn_back',function(){

var back_time = time()



//获取评论信息
var con_back = $(this).parent().parent().parent().find("#con_back").val();
if(con_back == ""){
return false;
}
var html_back;
html_back = '
'+
'
'+
'匿名:@brother'+back_time+''+
'
'+
'
'+
'

'+con_back+'

';
$(this).parent().parent().parent().find(".reply-list").append(html_back);
$(this).parent().parent().parent().find("#con_back").val("");
})


//评论提交
function time(){
function time(s) {
    return s < 10 ? '0' + s: s;
}
var myDate = new Date();
//获取当前年
var year=myDate.getFullYear();
//获取当前月
var month=myDate.getMonth()+1;
//获取当前日
var date=myDate.getDate(); 
var h=myDate.getHours();       //获取当前小时数(0-23)
var m=myDate.getMinutes();     //获取当前分钟数(0-59)
var s=myDate.getSeconds();  
return year+'-'+time(month)+"-"+time(date)+" "+time(h)+':'+time(m)+":"+time(s);

}


jquery前端评论插件模板_第1张图片

你可能感兴趣的:(web前端)