方法注解:
|
将指定的天数加到此实例的值上。
|
将指定的小时数加到此实例的值上。
|
将指定的分钟数加到此实例的值上。
|
将指定的毫秒数加到此实例的值上。
|
将指定的月份数加到此实例的值上。
|
将指定的秒数加到此实例的值上。
|
将指定的年份数加到此实例的值上。
|
将此实例的值与指定的 Date 值相比较,并指示此实例是早于、等于还是晚于指定的 Date 值。
|
返回一个数值相同的新DateTime对象
|
返回一个值,该值指示此实例是否与指定的 DateTime 实例相等。
|
获取此实例的日期部分。
|
获取此实例所表示的日期为该月中的第几天。
|
获取此实例所表示的日期是星期几。
|
获取此实例所表示日期的小时部分。
|
获取此实例所表示日期的分钟部分。
|
获取此实例所表示日期的毫秒部分。
|
获取此实例所表示日期的月份部分。
|
获取此实例的下个月一日的DateTime对象
|
获取此实例的下一个周日的DateTime对象
|
获取此实例的下一个周日的DateTime对象
|
获取此实例所表示日期的秒部分。
|
返回此实例的Date值
|
获取此实例所表示日期的年份部分。
|
指示此实例是否是DateTime对象
|
将当前 DateTime 对象的值转换为其等效的短日期字符串表示形式。
|
将当前 DateTime 对象的值转换为其等效的短时间字符串表示形式。
|
将当前 DateTime 对象的值转换为其等效的字符串表示形式。
|
验证Add系列的方法参数是否合法
|
继承自Date的方法
|
比较 DateTime 的两个实例,并返回它们相对值的指示。
|
返回指定年和月中的天数。
|
返回一个值,该值指示 DateTime 的两个实例是否相等。
|
返回指定的年份是否为闰年的指示。
|
获取一个 DateTime 对象,该对象设置为此计算机上的当前日期和时间,表示为本地时间。
|
将日期和时间的指定字符串表示形式转换为其等效的 DateTime。
|
获取当前日期,其时间组成部分设置为 00:00:00。
|
//瞬間を表し、通常は日付と時刻として表されます。
function DateTime(年、月、日、時、分、秒、ミリ秒){
var d = new Date();
if (年 || 年 == 0){
d.setFullyear(年);
}
if (月 || 月 == 0){
d.setMonth(月 - 1);
if (日 || 月 == 0) | 日 == 0){
d.setDate(日);
if (時間 || 時間 == 0){
d.setHours(時間); 🎜> if (min || min == 0){
d.setMinutes(min);
}
if (sec || sec == 0){
d.setSeconds(sec) ;
}
if (millisec || millisec == 0){
d.setMillisecnds(millisec);
}
// 指定された日数をこのインスタンスの値に加算します。
this.AddDays = function(value){
if(!ValidateAddMethodParam(value)){
return null;
var result = this.Clone() result .GetValue().setDate( result.GetDay() 値);
結果を返します。
this.AddHours = function(value){
if(!ValidateAddMethodParam(value)){
return null;
var result = this.Clone() result .GetValue().setHours( result.GetHour() 値);
結果を返します。
this.AddMinutes = function(value){
if(!ValidateAddMethodParam(value)){
return null;
var result = this.Clone() result .GetValue().setMinutes( result.GetMinute() 値);
結果を返します。
this.AddMilliseconds = function(value){
if(!ValidateAddMethodParam(value)){
return null;
var result = this.Clone(); result.GetMillisecond() value);
return result;
}
//このインスタンスの値に指定された月数を加算します。
this.AddMonths = function(value){
if(!ValidateAddMethodParam(value)){
return null;
var result = this.Clone() result .GetValue().setMonth( result.GetValue().getMonth() value);
return result;
}
//このインスタンスの値に指定された秒数を加算します。
this.AddSeconds = function(value){
if(!ValidateAddMethodParam(value)){
return null;
var result = this.Clone() result .GetValue().setSeconds( result.GetSecond() value);
return result;
}
//このインスタンスの値に指定された年数を加算します。
this.Addyears = function(value){
if(!ValidateAddMethodParam(value)){
return null;
var result = this.Clone() result .GetValue().setFullyear( result.Get Year() value);
指定された Date 値以降の結果を返します。
this.CompareTo = function(other){
var externalTicks = other.getTime();
var num2 = d.getTime();
if (num2 > externalTicks)
{
return 1;
}
if (num2 < externalTicks)
{
return -1;
return
}
// 新しい DateTime を返します。同じ値を持つオブジェクト
this.Clone = function(){
return new DateTime(
Day ()
, this.GetHour()
,this.GetMinute()
,this.GetSecond()
,this.GetMillisecond());
}
//このインスタンスが指定された DateTime インスタンスと等しいかどうかを示す値。
this.Equals = function(other){
return this.CompareTo(other) == 0;
}
//このインスタンスの日付部分を取得します。
this.GetDate = function(){
var result = new DateTime(d.getFull Year(), d.getMonth(), d.getDate(), 0, 0, 0, 0); return result ;
}
//このインスタンスが表す日付を取得します。
this.GetDay = function(){
return d.getDate();
}
//このインスタンスによって表される曜日を取得します。
this.GetDayOfWeek = function(){
return d.getDay();
}
//このインスタンスによって表される日付の時間の部分を取得します。
this.GetHour = function(){
return d.getHours();
}
//このインスタンスによって表される日付の分の部分を取得します。
this.GetMinute = function(){
return d.getMinutes();
}
//このインスタンスによって表される日付のミリ秒部分を取得します。
this.GetMillisecond = function(){
return d.getMilliseconds();
}
//このインスタンスによって表される日付の月の部分を取得します。
this.GetMonth = function(){
return d.getMonth() 1;
}
//このインスタンスの翌月の初日の DateTime オブジェクトを取得します
this .GetNextMonthFirstDay = function(){
var result = new DateTime(this.Get Year(), this.GetMonth(), 1, 0, 0, 0, 0);
result = result.AddMonths(1); ;
return result.AddDays(7 - result.GetDayOfWeek());
}
// このインスタンスの次の日曜日の DateTime オブジェクトを取得します
this.GetNext YearFirstDay = function( ){
return new DateTime(this.Get Year() 1, 1, 1, 0, 0, 0, 0);
}
} // このインスタンスによって表される日付の秒部分を取得します。
this.GetSecond = function(){
return d.getSeconds();
}
//このインスタンスの日付値を返します
this.GetValue = function(){
return d;
}
//このインスタンスによって表される日付の年の部分を取得します。
this.Get Year = function(){
return d.getFull Year();
}
//このインスタンスが DateTime オブジェクトであるかどうかを示します
this.IsDateTime = function(){}
//現在の DateTime オブジェクトの値を、同等の短い日付文字列表現に変換します。
this.ToShortDateString = function(){
var result = "";
result = d.getFullyear() "-" (d.getMonth() 1) "-" d.getDate();
return result;
this.ToShortTimeString = function(){
var result = "";
result = d.getHours() ":" d.getMinutes() ":" d.getSeconds(); return result;
}
//現在の DateTime オブジェクトの値を同等の文字列表現に変換します。
this.ToString = function(format){
if(typeof(format) == "string"){
}
return this.ToShortDateString() " " this.ToShortTimeString( ;
🎜>}
//DateTime の 2 つのインスタンスを比較し、それらの相対値の指示を返します。
DateTime.Compare = function(d1, d2){
return d1.CompareTo(d2);
}
//指定された年と月の日数を返します。
DateTime.DaysInMonth = function(year, month){
if ((month < 1) || (month > 12))
{
return "month[" month "] を超えています範囲";
}
var numArray = DateTime.IsLeapyear(年) ? DateTime.DaysToMonth366 : DateTime.DaysToMonth365;
return (numArray[月] - numArray[月 - 1]);
}
//DateTime の 2 つのインスタンスが等しいかどうかを示す値を返します。
DateTime.Equals = function(d1, d2){
return d1.CompareTo(d2) == 0;
}
//指定された年がうるう年かどうかを返します。
DateTime.IsLeap Year = function(year)
{
if ((year < 1) || (year > 0x270f))
{
return "year[" year "]範囲外です";
}
if ((年 % 4) != 0)
{
return false;
}
if ((年 % 100) == 0 )
{
return ((year % 400) == 0);
}
return true;
}
// このコンピューターに設定されている DateTime オブジェクトを取得しますの現在の日付と時刻。現地時間で表されます。
DateTime.Now = new DateTime();
//指定された日付と時刻の文字列表現を同等の DateTime に変換します。
DateTime.Parse = function(s){
var result = new DateTime();
var value = result.GetValue();
value.setHours(0,0,0,0); ;
var dateRex = /b[1-2][0-9][0-9][0-9][-]d{1,2}[-]d{1,2}b/i ;
if(dateRex.test(s)){
var dateStr = s.match(dateRex)[0];
try{
var dateParts = dateStr.split("-");
var Year = Dateparts [0] -0;
var Month = Dateparts [2] -0;
Value.setFullyear day ); }b/i;
if(timeRex.test(s)){
var timeStr = s.match(timeRex)[0];
try{
var timeParts = timeStr.split (" :");
var 時間 = timeParts[0] - 0;
var min = timeParts[1] - 0;
var sec = timeParts[2] - 0;
value.sethouse (時、分、秒);
} catch (ex) {
}
} else {
return
}
RETURN Result ;
//時刻コンポーネントを 00:00:00 に設定した現在の日付を取得します。
DateTime.Today = new DateTime(null, null, null, 0, 0, 0, 0);
//静的フィールド
DateTime.DaysToMonth365 = [ 0, 0x1f, 0x3b, 90 , 120, 0x97, 0xb5, 0xd4, 0xf3, 0x111, 0x130, 0x14e, 0x16d ];
DateTime.DaysToMonth366 = [ 0, 0x1f, 60, 0x5b, 0x79, 0x98, 0xb6, 0xd5 、0xf4、0x112、0x131、 0x14f、0x16e ];