在网站开发过程中我们会经常用到签到功能来奖励用户积分,或者做一些其他活动。这次项目开发过程中做了日历签到,因为没有经验所有走了很多弯路,再次记录过程和步骤。日历签到样式:

本次签到只记录本月签到数,想要查询可以写其他页面,查询所有签到记录。

3.前台代码

*{margin:0;padding:0;font:14px/1.8 "Helvetica Neue","microsoft yahei";}

签到记录

已签到
立即签到
已签到

$(document).ready(function(){

$(".ser_mbx").click(function(){

$.ajax({

url:"{:U('Index/Checkin')}",

type:'POST',

datatype:"json",

success:function(msg){

$(".already").show();

$(".ser_mbx").hide();

MonthSign();

}

});

});

});

$(document).ready(function(){

MonthSign();

});

function MonthSign(){

//ajax获取日历json数据

$.ajax({

url:"{:U('Index/MonthSign')}",

type:'POST',

datatype:"json",

success:function(msg){

//alert(msg);

/*var signList=[{"signDay":"10"},{"signDay":"11"},{"signDay":"12"},{"signDay":"13"}];

*/

calUtil.init(JSON.parse(msg));

}

});

}

var calUtil = {

//当前日历显示的年份

showYear:2015,

//当前日历显示的月份

showMonth:1,

//当前日历显示的天数

showDays:1,

eventName:"load",

//初始化日历

init:function(signList){

calUtil.setMonthAndDay();

calUtil.draw(signList);

calUtil.bindEnvent();

},

draw:function(signList){

//绑定日历

var str = calUtil.drawCal(calUtil.showYear,calUtil.showMonth,signList);

$("#calendar").html(str);

//绑定日历表头

var calendarName=calUtil.showYear+"年"+calUtil.showMonth+"月";

$(".calendar_month_span").html(calendarName);

},

//绑定事件

bindEnvent:function(){

//绑定上个月事件

$(".calendar_month_prev").click(function(){

//ajax获取日历json数据

/*var signList=[{"signDay":"10"},{"signDay":"11"},{"signDay":"12"},{"signDay":"13"}];

calUtil.eventName="prev";

calUtil.init(signList);*/

});

//绑定下个月事件

$(".calendar_month_next").click(function(){

//ajax获取日历json数据

/*var signList=[{"signDay":"10"},{"signDay":"11"},{"signDay":"12"},{"signDay":"13"}];

calUtil.eventName="next";

calUtil.init(signList);*/

});

},

//获取当前选择的年月

setMonthAndDay:function(){

switch(calUtil.eventName)

{

case "load":

var current = new Date();

calUtil.showYear=current.getFullYear();

calUtil.showMonth=current.getMonth() + 1;

break;

case "prev":

var nowMonth=$(".calendar_month_span").html().split("年")[1].split("月")[0];

calUtil.showMonth=parseInt(nowMonth)-1;

if(calUtil.showMonth==0)

{

calUtil.showMonth=12;

calUtil.showYear-=1;

}

break;

case "next":

var nowMonth=$(".calendar_month_span").html().split("年")[1].split("月")[0];

calUtil.showMonth=parseInt(nowMonth)+1;

if(calUtil.showMonth==13)

{

calUtil.showMonth=1;

calUtil.showYear+=1;

}

break;

}

},

getDaysInmonth : function(iMonth, iYear){

var dPrevDate = new Date(iYear, iMonth, 0);

return dPrevDate.getDate();

},

bulidCal : function(iYear, iMonth) {

var aMonth = new Array();

aMonth[0] = new Array(7);

aMonth[1] = new Array(7);

aMonth[2] = new Array(7);

aMonth[3] = new Array(7);

aMonth[4] = new Array(7);

aMonth[5] = new Array(7);

aMonth[6] = new Array(7);

var dCalDate = new Date(iYear, iMonth - 1, 1);

var iDayOfFirst = dCalDate.getDay();

var iDaysInMonth = calUtil.getDaysInmonth(iMonth, iYear);

var iVarDate = 1;

var d, w;

aMonth[0][0] = "日";

aMonth[0][1] = "一";

aMonth[0][2] = "二";

aMonth[0][3] = "三";

aMonth[0][4] = "四";

aMonth[0][5] = "五";

aMonth[0][6] = "六";

for (d = iDayOfFirst; d

aMonth[1][d] = iVarDate;

iVarDate++;

}

for (w = 2; w

for (d = 0; d

if (iVarDate <= iDaysInMonth) {

aMonth[w][d] = iVarDate;

iVarDate++;

}

}

}

return aMonth;

},

ifHasSigned : function(signList,day){

var signed = false;

$.each(signList,function(index,item){

if(item.signDay == day) {

signed = true;

return false;

}

});

return signed ;

},

drawCal : function(iYear, iMonth ,signList) {

var myMonth = calUtil.bulidCal(iYear, iMonth);

var htmls = new Array();

htmls.push("

");

htmls.push("

");

htmls.push("

htmls.push("

");

htmls.push("

");

htmls.push("

htmls.push("

");

htmls.push("

" + myMonth[0][0] + "");

htmls.push("

" + myMonth[0][1] + "");

htmls.push("

" + myMonth[0][2] + "");

htmls.push("

" + myMonth[0][3] + "");

htmls.push("

" + myMonth[0][4] + "");

htmls.push("

" + myMonth[0][5] + "");

htmls.push("

" + myMonth[0][6] + "");

htmls.push("

");

var d, w;

for (w = 1; w

htmls.push("

");

for (d = 0; d

var ifHasSigned = calUtil.ifHasSigned(signList,myMonth[w][d]);

console.log(ifHasSigned);

if(ifHasSigned){

htmls.push("

" + (!isNaN(myMonth[w][d]) ? myMonth[w][d] : " ") + "");

} else {

htmls.push("

" + (!isNaN(myMonth[w][d]) ? myMonth[w][d] : " ") + "");

}

}

htmls.push("

");

}

htmls.push("

");

htmls.push("

");

htmls.push("

");

return htmls.join('');

}

};

4.后台代码:查询今天是否签到:$points = M('points_log');

$userid=session('user.id');

$begintime=date("Y-m-d H:i:s",mktime(0,0,0,date('m'),date('d'),date('Y')));

$endtime=date("Y-m-d H:i:s",mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1);

$where=array(

'points'=>'5',

'user_id'=>$userid,

'createtime' => array(array('gt',$begintime),array('lt',$endtime)),

);

$res=$points->where($where)->order("createtime desc")->select();

//var_dump($res['0']['points']);

$this->assign('res',$res);

5.查询积分:/*查询积分*/

$jfen=M(cuser);

$list=$jfen->where(array('id'=>$userid))->field('points')->find();

$preg = '/[0]*/';

$poin = preg_replace($preg, '', $list, 1);

$this->assign('poin',$poin);

6.签到写入数据库:/*签到*/

if(IS_AJAX){

$userid=session('user.id');

$type='签到';

$typename='checkin';

$id_status='up';

$date=Date('Y-m-d H:i:s');

$dataList=array(

'user_id'=>$userid,

'type'=>$type,

'typename'=>$typename,

'id_status'=>$id_status,

'points'=>'5',

'createtime'=>$date,

'remark'=>'奖励5积分'

);

$points = M('points_log');

if($points->add($dataList)){

$log=session('user.id');

$user=M('cuser');

$user->where(array('id'=>$log))->setInc('points',5);

}

$this->ajaxReturn($status);

}

7. /*查询本月签到天数,并以json格式返回*/public function MonthSign(){

$userid=session('user.id');

$points = M('points_log');

$res=$points->where(array('user_id'=>$userid))->select();

$sign='[';

foreach($res as $key=>$value){

$first=explode(' ', $value['createtime']);

$second=explode('-', $first['0'])['2'];

if($key==0){

$sign .= '{"signDay":"'.$second.'"}';

}else{

$sign .= ',{"signDay":"'.$second.'"}';

}

}

$sign .=']';

$this->ajaxReturn($sign,'json');

}

js php 实现日历签到_php+mysql+jquery实现日历签到功能的过程与步骤相关推荐

  1. js php 实现日历签到_php+mysql+jquery实现日历签到功能

    在网站开发过程中我们会经常用到签到功能来奖励用户积分,或者做一些其他活动.这次项目开发过程中做了日历签到,因为没有经验所有走了很多弯路,再次记录过程和步骤. 1.日历签到样式: 2.本次签到只记录本月 ...

  2. 日历签到 mysql_php+mysql+jquery实现日历签到功能的方法

    本文主要介绍了php+mysql+jquery实现日历签到功能的过程与步骤,具有很好的参考价值 在网站开发过程中我们会经常用到签到功能来奖励用户积分,或者做一些其他活动.这次项目开发过程中做了日历签到 ...

  3. php mysql ajax日历记事本_php+mysql+jquery日历签到

    在网站开发过程中我们会经常用到签到功能来奖励用户积分,或者做一些其他活动.这次项目开发过程中做了日历签到,因为没有经验所有走了很多弯路,再次记录过程和步骤.1.日历签到样式:2.本次签到只记录本月签到 ...

  4. php mysql实现每日签到积分_php+mysql+jquery实现日历签到功能

    在网站开发过程中我们会经常用到签到功能来奖励用户积分,或者做一些其他活动.这次项目开发过程中做了日历签到,因为没有经验所有走了很多弯路,再次记录过程和步骤. 1.日历签到样式: 2.本次签到只记录本月 ...

  5. 日历mysql签到源码_php+mysql+jquery实现日历签到功能

    在网站开发过程中我们会经常用到签到功能来奖励用户积分,或者做一些其他活动.这次项目开发过程中做了日历签到,因为没有经验所有走了很多弯路,再次记录过程和步骤. 1.日历签到样式: 2.本次签到只记录本月 ...

  6. mysql怎么做每天签到_PHP+MYSQL+AJAX实现每日签到功能

    sign.php文件 if ($_GET['do']=='getDay'){ $db=new mysqli('localhost','root','123456','sign'); $uid=2; $ ...

  7. js php 实现日历签到_基于jquery实现日历签到功能_jquery

    在一些任务游戏.贴吧管理中都会有一个签到功能,帮助大家记录登录天数,积累等级经验,这个日历签到功能是如何实现的,本文为大家进行演. 本文实例讲述了基于jquery实现日历签到功能.分享给大家供大家参考 ...

  8. mysql1.8找回密码_PHP+Mysql+jQuery找回密码

    通常所说的密码找回功能不是真的能把忘记的密码找回,因为我们的密码是加密保存的,一般开发者会在验证用户信息后通过程序生成一个新密码或者生成一个特定的链接并发送邮件到用户邮箱,用户从邮箱链接到网站的重置密 ...

  9. php与mysql列表_PHP+Mysql+jQuery实现的查询和列表框选择

    本篇文章主要介绍PHP+Mysql+jQuery实现的查询和列表框选择,感兴趣的朋友参考下,希望对大家有所帮助. 本文讲解如何通过ajax查询mysql数据,并将返回的数据显示在待选列表中,再通过选择 ...

最新文章

  1. JavaScript 技术篇-js获取iframe内的元素方法实例演示
  2. 浅谈JVM(一) ClassLoader的双亲委派和沙箱机制
  3. JavaScript --- 表单focus,blur,change事件的实现
  4. CentOS环境下,gdb调试中出现:Missing separate debuginfos, use: debuginfo-install.....的问题
  5. 网络协议栈深入分析(三)--BSD socket和传输层sock
  6. mysql unrecognized service问题解决
  7. 「Font」- 设置 Fallback 字体(如果字体 A 中不存在某个字符,则从字体 B 中加载该字符) @20210212
  8. Instruments之相关介绍(一)
  9. 快速非支配排序算法流程
  10. Buzzsumo大型教程(内容营销+外链outreach必备)营销神器
  11. 笔记本蓝牙模块转USB接口方法
  12. 关于1000BASE-T1 1000BASE-TX和100BASE-T1
  13. 安卓开发— —仿微信界面(二)
  14. 【翻译】通过GSoC、GSoD、LFX和Outreachy来庆祝CNCF实习的成功五周年
  15. UltraEdit小众用法
  16. Quartz 实现画图片、写文字、画线、椭圆、矩形、棱形等。三
  17. imx6ull系统移植--uboot
  18. CLIPCAP:图生文
  19. Spring @Transactional 与 JTA @Transactional
  20. 卡特兰数 (hdu3723 Delta Wave)

热门文章

  1. CDH集成Kerberos配置
  2. CMMI认证对软件开发企业的用处
  3. 【素材】200+人体动态素材
  4. 微信公众号第三方平台开发PYTHON教程 PART 2
  5. java布尔值默认值是_Java中的布尔值和布尔值的默认值
  6. 千兆网RGMII接口FPGA实现(基于RTL8211)
  7. uniapp小计 h5图片请求403
  8. Springboot 单元测试结合Jacoco收集单元测试覆盖率
  9. EnOcean-自获能无线电技术
  10. 【精炼】如果金庸小说里的门派都是企业……