📄 datetime.js
字号:
// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Permissive License.
// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx.
// All other rights reserved.
/// <reference name="MicrosoftAjax.debug.js" />
/// <reference name="MicrosoftAjaxTimer.debug.js" />
/// <reference name="MicrosoftAjaxWebForms.debug.js" />
/// <reference path="../Common/Common.js" />
Type.registerNamespace("AjaxControlToolkit");
AjaxControlToolkit.TimeSpan = function() {
/// <summary>
/// Represents a period of time
/// </summary>
if (arguments.length == 0) this._ctor$0.apply(this, arguments);
else if (arguments.length == 1) this._ctor$1.apply(this, arguments);
else if (arguments.length == 3) this._ctor$2.apply(this, arguments);
else if (arguments.length == 4) this._ctor$3.apply(this, arguments);
else if (arguments.length == 5) this._ctor$4.apply(this, arguments);
else throw Error.parameterCount();
}
AjaxControlToolkit.TimeSpan.prototype = {
_ctor$0 : function() {
/// <summary>
/// Initializes a new TimeSpan
/// </summary>
this._ticks = 0;
},
_ctor$1 : function(ticks) {
/// <summary>
/// Initializes a new TimeSpan
/// </summary>
/// <param name="ticks" type="Number" integer="true">The number of ticks in the TimeSpan</param>
this._ctor$0();
this._ticks = ticks;
},
_ctor$2 : function(hours, minutes, seconds) {
/// <summary>
/// Initializes a new TimeSpan
/// </summary>
/// <param name="hours" type="Number">The number of hours in the TimeSpan</param>
/// <param name="minutes" type="Number">The number of minutes in the TimeSpan</param>
/// <param name="seconds" type="Number">The number of seconds in the TimeSpan</param>
this._ctor$0();
this._ticks =
(hours * AjaxControlToolkit.TimeSpan.TicksPerHour) +
(minutes * AjaxControlToolkit.TimeSpan.TicksPerMinute) +
(seconds * AjaxControlToolkit.TimeSpan.TicksPerSecond);
},
_ctor$3 : function(days, hours, minutes, seconds) {
/// <summary>
/// Initializes a new TimeSpan
/// </summary>
/// <param name="days" type="Number">The number of days in the TimeSpan</param>
/// <param name="hours" type="Number">The number of hours in the TimeSpan</param>
/// <param name="minutes" type="Number">The number of minutes in the TimeSpan</param>
/// <param name="seconds" type="Number">The number of seconds in the TimeSpan</param>
this._ctor$0();
this._ticks =
(days * AjaxControlToolkit.TimeSpan.TicksPerDay) +
(hours * AjaxControlToolkit.TimeSpan.TicksPerHour) +
(minutes * AjaxControlToolkit.TimeSpan.TicksPerMinute) +
(seconds * AjaxControlToolkit.TimeSpan.TicksPerSecond);
},
_ctor$4 : function(days, hours, minutes, seconds, milliseconds) {
/// <summary>
/// Initializes a new TimeSpan
/// </summary>
/// <param name="days" type="Number">The number of days in the TimeSpan</param>
/// <param name="hours" type="Number">The number of hours in the TimeSpan</param>
/// <param name="minutes" type="Number">The number of minutes in the TimeSpan</param>
/// <param name="seconds" type="Number">The number of seconds in the TimeSpan</param>
/// <param name="milliseconds" type="Number">The number of milliseconds in the TimeSpan</param>
this._ctor$0();
this._ticks =
(days * AjaxControlToolkit.TimeSpan.TicksPerDay) +
(hours * AjaxControlToolkit.TimeSpan.TicksPerHour) +
(minutes * AjaxControlToolkit.TimeSpan.TicksPerMinute) +
(seconds * AjaxControlToolkit.TimeSpan.TicksPerSecond) +
(milliseconds * AjaxControlToolkit.TimeSpan.TicksPerMillisecond);
},
getDays : function() {
/// <summary>
/// Gets the days part of the TimeSpan
/// </summary>
/// <returns type="Number" />
return Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerDay);
},
getHours : function() {
/// <summary>
/// Gets the hours part of the TimeSpan
/// </summary>
/// <returns type="Number" />
return Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerHour) % 24;
},
getMinutes : function() {
/// <summary>
/// Gets the minutes part of the TimeSpan
/// </summary>
/// <returns type="Number" />
return Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerMinute) % 60;
},
getSeconds : function() {
/// <summary>
/// Gets the seconds part of the TimeSpan
/// </summary>
/// <returns type="Number" />
return Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerSecond) % 60;
},
getMilliseconds : function() {
/// <summary>
/// Gets the milliseconds part of the TimeSpan
/// </summary>
/// <returns type="Number" />
return Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerMillisecond) % 1000;
},
getDuration : function() {
/// <summary>
/// Gets the total duration of a TimeSpan
/// </summary>
/// <returns type="AjaxControlToolkit.TimeSpan" />
return new AjaxControlToolkit.TimeSpan(Math.abs(this._ticks));
},
getTicks : function() {
/// <summary>
/// Gets the ticks in the TimeSpan
/// </summary>
/// <returns type="Number" />
return this._ticks;
},
getTotalDays : function() {
/// <summary>
/// Gets the total number of days in the TimeSpan
/// </summary>
/// <returns type="Number" />
Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerDay);
},
getTotalHours : function() {
/// <summary>
/// Gets the total hours in the TimeSpan
/// </summary>
/// <returns type="Number" />
return Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerHour);
},
getTotalMinutes : function() {
/// <summary>
/// Gets the total minutes in the TimeSpan
/// </summary>
/// <returns type="Number" />
return Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerMinute);
},
getTotalSeconds : function() {
/// <summary>
/// Gets the total seconds in the TimeSpan
/// </summary>
/// <returns type="Number" />
return Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerSecond);
},
getTotalMilliseconds : function() {
/// <summary>
/// Gets the total milliseconds in the TimeSpan
/// </summary>
/// <returns type="Number" />
return Math.floor(this._ticks / AjaxControlToolkit.TimeSpan.TicksPerMillisecond);
},
add : function(value) {
/// <summary>
/// Adds the supplied TimeSpan to this TimeSpan
/// </summary>
/// <param name="value" type="AjaxControlToolkit.TimeSpan">The TimeSpan to add</param>
/// <returns type="AjaxControlToolkit.TimeSpan" />
return new AjaxControlToolkit.TimeSpan(this._ticks + value.getTicks());
},
subtract : function(value) {
/// <summary>
/// Subtracts the supplied TimeSpan to this TimeSpan
/// </summary>
/// <param name="value" type="AjaxControlToolkit.TimeSpan">The TimeSpan to subtract</param>
/// <returns type="AjaxControlToolkit.TimeSpan" />
return new AjaxControlToolkit.TimeSpan(this._ticks - value.getTicks());
},
negate : function() {
/// <summary>
/// Negates the TimeSpan
/// </summary>
/// <returns type="AjaxControlToolkit.TimeSpan" />
return new AjaxControlToolkit.TimeSpan(-this._ticks);
},
equals : function(value) {
/// <summary>
/// Whether this TimeSpan equals another TimeSpan
/// </summary>
/// <param name="value" type="AjaxControlToolkit.TimeSpan">The TimeSpan to test</param>
/// <returns type="AjaxControlToolkit.TimeSpan" />
return this._ticks == value.getTicks();
},
compareTo : function(value) {
/// <summary>
/// Whether this TimeSpan greater or less than another TimeSpan
/// </summary>
/// <param name="value" type="AjaxControlToolkit.TimeSpan">The TimeSpan to test</param>
/// <returns type="AjaxControlToolkit.TimeSpan" />
if(this._ticks > value.getTicks())
return 1;
else if(this._ticks < value.getTicks())
return -1;
else
return 0;
},
toString : function() {
/// <summary>
/// Gets the string representation of the TimeSpan
/// </summary>
/// <returns type="String" />
return this.format("F");
},
format : function(format) {
/// <summary>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -