asp.net中頁面顯示當前系統(tǒng)時間附圖
更新時間:2013年12月27日 10:31:57 作者:
asp.net如何實現(xiàn)在頁面顯示當前系統(tǒng)時間,本文有個不錯的方法,大家可以嘗試操作下,在文章末尾有截圖
復制代碼 代碼如下:
<p class="time">當前系統(tǒng)時間:<script type="text/javascript">
today = new Date();
function initArray() {
this.length = initArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i + 1] = initArray.arguments[i]
}
var d = new initArray(
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六");
document.write(
"<font color=##000000 style='font-size:9pt;font-family: 宋體'> ",
(today.getYear()), "年",
today.getMonth() + 1, "月",
today.getDate(), "日",
d[today.getDay() + 1],
"</font>");
</script> <span id="liveclock"></span> <script type="text/javascript">
function www_helpor_net() {
var Digital = new Date()
var hours = Digital.getHours()
var minutes = Digital.getMinutes()
var seconds = Digital.getSeconds()
if (minutes <= 9)
minutes = "0" + minutes
if (seconds <= 9)
seconds = "0" + seconds
myclock = hours + ":" + minutes + ":" + seconds
if (document.layers) {
document.layers.liveclock.document.write(myclock)
document.layers.liveclock.document.close()
} else if (document.all)
liveclock.innerHTML = myclock
setTimeout("www_helpor_net()", 1000)
}
www_helpor_net();
</script> </p>
效果圖如下:
相關文章
asp.net 自定義控件實現(xiàn)無刷新上傳圖片,立即顯示縮略圖,保存圖片縮略圖
自定義控件實現(xiàn)無刷新上傳圖片,立即顯示縮略圖,保存圖片縮略圖2010-01-01
c# 讀取文件內容存放到int數(shù)組 array.txt
c# 讀取文本的內容,并且將內容保存到int數(shù)組中,大家可以學習到c#一些數(shù)組跟讀取內容的函數(shù)。2009-04-04

