flex 显示当前时间

来源:互联网 发布:淘宝店家温馨寄语 编辑:程序博客网 时间:2024/05/17 23:02
<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="showTime()"><mx:Script><![CDATA[private function showTime():void {var tick:Timer = new Timer(1000);tick.addEventListener(TimerEvent.TIMER,show);tick.start();}private function show(event:TimerEvent):void {var d:Date = new Date();this.datelabel.text = "日期:"+d.fullYear.toString()+"年/"+(d.month+1).toString()+"月/"+d.date.toString()+"日/"+d.hours.toString()+":"+d.minutes.toString()+":"+d.seconds.toString();}]]></mx:Script><mx:Label id="datelabel" fontSize="18" color="black"/></mx:Application>