有一个非常简单的 javascript 时钟,如下所示
<script>
function startTime() {
var today = new Date();
var h = today.getHours();
var m = today.getMinutes();
var s = today.getSeconds();
// add a zero in front of numbers<10
m = checkTime(m);
s = checkTime(s);
document.getElementById('clockSpan').innerHTML = h + ":" + m + ":" + s;
t = setTimeout(function () { startTime() }, 500);
}
function checkTime(i) {
if (i < 10) {
i = "0" + i;
}
return i;
}
</script>
但它使用浏览器时间设置。相反,我想使用服务器时间。
我怎么能做这样的事情?
var today = new Date(<%=DateTime.UtcNow%>);
它给出了这样的错误
ASP.NET 4.5