码迷,mamicode.com
首页 > Web开发 > 详细

js 上一天、下一天

时间:2015-08-21 12:51:52      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

function Previousday() {

    var curDate = new Date(CreateDate_Temp);
    var preDate = new Date(curDate.getTime() - 24 * 60 * 60 * 1000);

    var strDate = preDate.getFullYear() + "-";
    strDate += preDate.getMonth() + 1 + "-";
    strDate += preDate.getDate() + "-";
    strDate += preDate.getHours() + ":";
    strDate += preDate.getMinutes() + ":";
    strDate += preDate.getSeconds();
    $("#CreateDate").datebox("setValue", strDate);
    CreateDate_Temp = $(#CreateDate).datebox(getValue);
}
function NextDay() {

    // var nextDate = new Date(curDate.getTime() + 24*60*60*1000);
    var curDate = new Date(CreateDate_Temp);
    var nextDate = new Date(curDate.getTime() + 24 * 60 * 60 * 1000);

    var strDate = nextDate.getFullYear() + "-";
    strDate += nextDate.getMonth() + 1 + "-";
    strDate += nextDate.getDate() + "-";
    strDate += nextDate.getHours() + ":";
    strDate += nextDate.getMinutes() + ":";
    strDate += nextDate.getSeconds();
    $("#CreateDate").datebox("setValue", strDate);
    CreateDate_Temp = $(#CreateDate).datebox(getValue);
}

<a href="javascript:void(0)" class="easyui-linkbutton" onclick="Previousday()">上一天</a>
                    <a href="javascript:void(0)" class="easyui-linkbutton" onclick="NextDay()">下一天</a>

 <input id="CreateDate" name="CreateDate" class="easyui-datebox"></input>

js 上一天、下一天

标签:

原文地址:http://www.cnblogs.com/bingguang/p/4747215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!