最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

Ajax实现phpcms 点赞功能实例代码

来源:动视网 责编:小采 时间:2020-11-27 22:51:42
文档

Ajax实现phpcms 点赞功能实例代码

Ajax实现phpcms 点赞功能实例代码:首先 是将后台中 模块--->新闻心情--->心情配置 去掉多余的剩一个,名称改成 赞 提交保存。 其次 是修改新闻心情的模板文件:/phpcms/templates/default/mood/index.html 删除所有代码只返回点赞总数量 {loop $setting $k $
推荐度:
导读Ajax实现phpcms 点赞功能实例代码:首先 是将后台中 模块--->新闻心情--->心情配置 去掉多余的剩一个,名称改成 赞 提交保存。 其次 是修改新闻心情的模板文件:/phpcms/templates/default/mood/index.html 删除所有代码只返回点赞总数量 {loop $setting $k $


首先 是将后台中 模块--->新闻心情--->心情配置  去掉多余的剩一个,名称改成 “赞” 提交保存。

其次 是修改新闻心情的模板文件:/phpcms/templates/default/mood/index.html

删除所有代码只返回点赞总数量

{loop $setting $k $v} 
{$data[$v['fields']]} 
{/loop} 

模板页面的实现如下  通过循环数组

<div class="info"> 
 <a href="http://phpcms.com/content-150-1-1.html" target="_blank" title="展会现场人头攒动"><h4 class="title ellipsis download">展会现场人头攒动</h4></a> 
 <p class="date">2017-02-01</p> 
 <div class="sum"> 
 <span class="laud"><i class="iconfont zanbtn" >赞</i><a href="javascript:;" rel="external nofollow" <span style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(34, 34, 34); unicode-bidi: -webkit-isolate; font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">id</span><span style="color: rgb(34, 34, 34); font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">="</span><span style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(34, 34, 34); unicode-bidi: -webkit-isolate; font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">zans{$r[id]}</span><span style="color: rgb(34, 34, 34); font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">" </span> title="<span style="color: rgb(34, 34, 34); font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">$r[id]}</span>">0</a></span> 
 </div> 
 </div> 

ajax 处理  K=8是点赞   

$(".zanbtn").on("click",function(){ 
 var id = $(this).next().attr("title"); 
 var aval = $(this).next("a").html(); 
 $.getJSON('http://phpcms.com/index.php?m=mood&c=index&a=post&id=150-'+id+'-1&k=8&'+Math.random()+'&callback=?', function(data){ 
 if(data.status==1) { 
 console.log( $(this).next()); 
 $("#zans"+id).html(data.data); 
 }else { 
 alert(data.data); 
 return false; 
 } 
 }) 
 }); 

以上所述是小编给大家介绍的Ajax实现phpcms 点赞功能实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

文档

Ajax实现phpcms 点赞功能实例代码

Ajax实现phpcms 点赞功能实例代码:首先 是将后台中 模块--->新闻心情--->心情配置 去掉多余的剩一个,名称改成 赞 提交保存。 其次 是修改新闻心情的模板文件:/phpcms/templates/default/mood/index.html 删除所有代码只返回点赞总数量 {loop $setting $k $
推荐度:
标签: 点赞 php 代码
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top