jquery 在时间上戳加一年。例如现在时间戳为 1472711659,在此基础上加上一年!谢谢!

jquery 在时间上戳加一年。例如现在时间戳为 1472711659,在此基础上加上一年!谢谢!,第1张

给你趴一个看看,先把时间戳转为时间,然后+1年,然后在转为时间戳

(function($) {

$extend({

myTime: {

/

当前时间戳

@return <int> unix时间戳(秒)

/

CurTime: function(){

return Dateparse(new Date())/1000;

},

/

日期 转换为 Unix时间戳

@param <string> 2014-01-01 20:20:20 日期格式

@return <int> unix时间戳(秒)

/

DateToUnix: function(string) {

var f = stringsplit(' ', 2);

var d = (f[0] f[0] : '')split('-', 3);

var t = (f[1] f[1] : '')split(':', 3);

return (new Date(

parseInt(d[0], 10) || null,

(parseInt(d[1], 10) || 1) - 1,

parseInt(d[2], 10) || null,

parseInt(t[0], 10) || null,

parseInt(t[1], 10) || null,

parseInt(t[2], 10) || null

))getTime() / 1000;

},

/

时间戳转换日期

@param <int> unixTime 待时间戳(秒)

@param <bool> isFull 返回完整时间(Y-m-d 或者 Y-m-d H:i:s)

@param <int> timeZone 时区

/

UnixToDate: function(unixTime, isFull, timeZone) {

if (typeof (timeZone) == 'number')

{

unixTime = parseInt(unixTime) + parseInt(timeZone) 60 60;

}

var time = new Date(unixTime 1000);

var ymdhis = "";

ymdhis += timegetUTCFullYear() + "-";

ymdhis += (timegetUTCMonth()+1) + "-";

ymdhis += timegetUTCDate();

if (isFull === true)

{

ymdhis += " " + timegetUTCHours() + ":";

ymdhis += timegetUTCMinutes() + ":";

ymdhis += timegetUTCSeconds();

}

return ymdhis;

}

}

});

})(jQuery);

调用边的

<script>

documentwrite($myTimeDateToUnix('2016-04-12 10:49:59')+'<br>');

documentwrite($myTimeUnixToDate(1460429399));

< /script>

您好!很高兴为您答疑!

Date对象的getYear()在不同的浏览器中获取的值不一样,火狐浏览器下为:getFullYear()

您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。

这个不能直接转换。只能自己编写。

下面是简单的例子。并有基本注释:

(function($) {

    $extend({

        myTime: {

            /

              当前时间戳

              @return <int>        unix时间戳(秒)  

             /

            CurTime: function(){

                return Dateparse(new Date())/1000;

            },

            /              

              日期 转换为 Unix时间戳

              @param <string> 2014-01-01 20:20:20  日期格式              

              @return <int>        unix时间戳(秒)              

             /

            DateToUnix: function(string) {

                var f = stringsplit(' ', 2);

                var d = (f[0]  f[0] : '')split('-', 3);

                var t = (f[1]  f[1] : '')split(':', 3);

                return (new Date(

                        parseInt(d[0], 10) || null,

                        (parseInt(d[1], 10) || 1) - 1,

                        parseInt(d[2], 10) || null,

                        parseInt(t[0], 10) || null,

                        parseInt(t[1], 10) || null,

                        parseInt(t[2], 10) || null

                        ))getTime() / 1000;

            },

            /              

              时间戳转换日期              

              @param <int> unixTime    待时间戳(秒)              

              @param <bool> isFull    返回完整时间(Y-m-d 或者 Y-m-d H:i:s)              

              @param <int>  timeZone   时区              

             /

            UnixToDate: function(unixTime, isFull, timeZone) {

                if (typeof (timeZone) == 'number')

                {

                    unixTime = parseInt(unixTime) + parseInt(timeZone)  60  60;

                }

                var time = new Date(unixTime  1000);

                var ymdhis = "";

                ymdhis += timegetUTCFullYear() + "-";

                ymdhis += (timegetUTCMonth()+1) + "-";

                ymdhis += timegetUTCDate();

                if (isFull === true)

                {

                    ymdhis += " " + timegetUTCHours() + ":";

                    ymdhis += timegetUTCMinutes() + ":";

                    ymdhis += timegetUTCSeconds();

                }

                return ymdhis;

            }

        }

    });

})(jQuery);

<input id="db"/>

<script>

$(function () {

$('#db')datebox({

onShowPanel: function () {//显示日趋选择对象后再触发d出月份层的事件,初始化时没有生成月份层

spantrigger('click'); //触发click事件d出月份层

if (!tds) setTimeout(function () {//延时触发获取月份对象,因为上面的事件触发和对象生成有时间间隔

tds = pfind('divcalendar-menu-month-inner td');

tdsclick(function (e) {

estopPropagation(); //禁止冒泡执行easyui给月份绑定的事件

var year = /\d{4}/exec(spanhtml())[0]//得到年份

, month = parseInt($(this)attr('abbr'), 10) + 1; //月份

$('#db')datebox('hidePanel')//隐藏日期对象

datebox('setValue', year + '-' + month); //设置日期的值

});

}, 0)

},

parser: function (s) {//配置parser,返回选择的日期

if (!s) return new Date();

var arr = ssplit('-');

return new Date(parseInt(arr[0], 10), parseInt(arr[1], 10) - 1, 1);

},

formatter: function (d) { return dgetFullYear() + '-' + dgetMonth(); }//配置formatter,只返回年月

});

var p = $('#db')datebox('panel'), //日期选择对象

tds = false, //日期选择对象中月份

span = pfind('spancalendar-text'); //显示月份层的触发控件

});

</script>

easyui 141开发,实现楼主的效果

以上就是关于jquery 在时间上戳加一年。例如现在时间戳为 1472711659,在此基础上加上一年!谢谢!全部的内容,包括:jquery 在时间上戳加一年。例如现在时间戳为 1472711659,在此基础上加上一年!谢谢!、jquery datepicker日期控件在IE中显示正常,在firefox中选择一次日期,年份就自动增加一百年的问题、jquery时间戳怎么转成日期格式等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9745397.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存