View Source
Go Back to /jang/books/webprog/03jscript/example/alert1.asp
Go Back to WWW sandbox
<%title="警告視窗 (Alert Window)"%>
<!--#include file="head.inc"-->
<hr>

<SCRIPT>
today = new Date();
hour = today.getHours();
minute = today.getMinutes();
second = today.getSeconds();
prepand = (hour>=12)? "下午":"上午";
hour = (hour>=12)? hour-12:hour;
string = "現在是"+prepand+hour+"點"+minute+"分"+second+"秒";
</SCRIPT>


<a href="javascript:alert(string)">現在時間</a>

<hr>
<!--#include file="foot.inc"-->