如何在頁面上顯示動態的目前時間?
可以貼一個 Label, 如下:
$(function(){
   showtime();
})

function showtime()
{
    var currtime = new Date().Format('yyyy-MM-dd hh:mm:ss');
    $('#Label1').html(currtime);
    setTimeout('showtime()',1000);
}