chinesedate.as
package liuyou.util
//根據日期獲取星期
public function getchinatimedate(date:date):string
strchinatime = " " + formatedweek;
return strchinatime;
}
public function get date():string
nthedate=nthedate - 29 - nbit;
n=n - 1;
}if (nisend)
break;
m=m + 1;
}wcuryear=1921 + m;
wcurmonth=k - n + 1;
wcurday=nthedate;
if (k == 12)
/*--生成農曆天乾、地支、屬相 ==> wnongli--*/
sznongli=stringtools.format("%0(%1%2)年", arrshuxiang[((wcuryear - 4) % 60) % 12], arrtiangan[((wcuryear - 4) % 60) % 10], arrdizhi[((wcuryear - 4) % 60) % 12]);
/*--生成農曆月、日 ==> wnongliday--*/
if (wcurmonth < 1)
else
return sznongli + sznongliday;
} }
}
stringtools.as
package liuyou.util/***string.format("hello %0, i don't love %1!", "kitty", "jimmy")* will return "hello kitty, i don't lve jimmy!".
** */
public static function format(pattern:string, ... args):string
);} }
}
使用的地方使用之:
txttime.text=stringtools.format(new chinesedate(new date()).date);
獲取日期:
var dateformatter:dateformatter = new dateformatter();
dateformatter.formatstring = "yyyy-mm-dd "; //jj:nn:ss
var now:string= dateformatter.format(new date());
internal function ontick(evt:timerevent):void else ;
if (currdate.getminutes()<10) else ;
if (currdate.getseconds()<10) else ;
currtimepannel.text=hour+":"+minute+":"+second;
}
時間定時器:
_timer = new timer(1000);
_timer.addeventlistener(timerevent.timer,ontick)
_timer.start();
這樣時間就在不停的走動,並且按1s 的時間走。
iOS控制項之日曆
這裡是我封裝的collectionview,繼承uicollectionview 首先是.h檔案 import inte ce thccalendar uicollectionview property nonatomic,assign nsinteger year property nonatom...
jQuery外掛程式之日曆外掛程式
在頁面開發中,經常遇到需要使用者輸入日期的操作。通常的做法是,提供乙個文字框 text 讓使用者輸入,然後,編寫 驗證輸入的資料,檢測其是否是日期型別。這樣比較麻煩,同時,使用者輸入日期的操作也不是很方便,影響使用者體驗。如果使用jquery ui中的datepicker 日曆 外掛程式,這些問題都...
C 實現農曆日曆的方法
具體實現方法如下 複製 如下 天乾 private static string tiangan 地支 private static string dizhi 十二生肖 private static string shengxiao 農曆日期 private static string dayname...