增加小说模板
This commit is contained in:
93
code/public/template/kuangyu/comment/js/comment.js
Normal file
93
code/public/template/kuangyu/comment/js/comment.js
Normal file
@@ -0,0 +1,93 @@
|
||||
// $(function(){
|
||||
// var page=1;
|
||||
// $(document).on('click',".ajaxpost",function(){
|
||||
// var url;
|
||||
// var target_form = $(this).attr('target-form');
|
||||
// var form = $('.'+target_form);
|
||||
// if (url = form.get(0).action) {
|
||||
// query = form.serialize();
|
||||
// $.post(url,query,function(data){
|
||||
// if (data.code==1) {
|
||||
// if(mold=='web'){
|
||||
// parent.layer.msg(data.msg,{icon: 1,shade: 0.3},function(){
|
||||
// location.reload();
|
||||
// });
|
||||
// }else{
|
||||
// parent.layer.open({content: data.msg,time: 2,end:function(){
|
||||
// location.reload();
|
||||
// }});
|
||||
// }
|
||||
// }else{
|
||||
// if(mold=='web'){
|
||||
// parent.layer.msg(data.msg,{icon: 0,shade: 0.3});
|
||||
// }else{
|
||||
// parent.layer.open({content: data.msg,time: 2});
|
||||
// }
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
// return false;
|
||||
// });
|
||||
|
||||
// reply=function(obj,mid,pid,type){
|
||||
// var html='<div class="uyanpost">';
|
||||
// html+='<form method="post" action="index.php?s=home/comment/add" class="form-x-'+pid+'">';
|
||||
// html+='<div class="resetbox sectionbox"><div class="blockbox">';
|
||||
// html+='<div class="postarea"><div class="postborder">';
|
||||
// html+='<textarea name="content"></textarea>';
|
||||
// html+='<input type="hidden" name="type" value="'+type+'" />';
|
||||
// html+='</div><div style="display: block;text-align: right;margin-top:8px">';
|
||||
// html+='<button class="btn btn-info ajaxpost" type="submit" target-form="form-x-'+pid+'">发 送</button>';
|
||||
// html+='</div></div><input type="hidden" name="mid" value="'+mid+'">';
|
||||
// html+='<input type="hidden" name="pid" value="'+pid+'"></div></div></form></div>';
|
||||
// var postbox=$(obj).parents('.post-content').siblings('.uyan-reply-postbox');
|
||||
// if(postbox.html()){
|
||||
// postbox.empty();
|
||||
// }else{
|
||||
// postbox.append(html);
|
||||
// }
|
||||
// resize();
|
||||
// }
|
||||
|
||||
// up=function(id){
|
||||
// $.get("index.php?s=home/comment/up/id/"+id,function(data){
|
||||
// if(mold=='web'){
|
||||
// parent.layer.msg(data.msg,{icon: data.code,shade: 0.3});
|
||||
// }else{
|
||||
// parent.layer.open({content: data.msg,skin: 'msg',time: 2});
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
|
||||
// resize=function() {
|
||||
// $("#comment", window.parent.document).css("height",$(document.body).height());
|
||||
// setTimeout(function () {
|
||||
// $("#comment", window.parent.document).css("height",$(document.body).height());
|
||||
// }, 500);
|
||||
// }
|
||||
|
||||
// ajaxpage=function(){
|
||||
// var y=0,list={};
|
||||
// if((page*page_num)>trre.length){
|
||||
// var comment_page=trre.length;
|
||||
// }else{
|
||||
// var comment_page=page*page_num;
|
||||
// }
|
||||
// for(var i =(page-1)*page_num; i < comment_page; i++){
|
||||
// list[y]=trre[i];
|
||||
// y++;
|
||||
// }
|
||||
// $.post("index.php?s=home/comment/tree",{tree:JSON.stringify(list),page:page,limit:page_num,count:count,type:type},function(data){
|
||||
// $('#posts').append(data);
|
||||
// if((trre.length>page_num && comment_page!=trre.length)){
|
||||
// page++;
|
||||
// $('#loadmore').show();
|
||||
// $('#loadmore').html('<a id="uyan-more" href="javascript:;" onclick="ajaxpage();" class="more"><span>加载更多评论</span></a>');
|
||||
// }else{
|
||||
// $('#loadmore').hide();
|
||||
// }
|
||||
// resize();
|
||||
// });
|
||||
// }
|
||||
// ajaxpage();
|
||||
// })
|
||||
Reference in New Issue
Block a user