JavaScriptDate对象方法:显示当前的UTC时间(带有一个判断数值是否小于10的函数)
显示当前的 UTC 时间(带有一个判断数值是否小于 10 的函数)
如何使用 getUTCHours(), getUTCMinutes() 以及 getUTCSeconds() 来显示当前的 UTC 时间。
编辑您的代码:
function checkTime(i)
{
if (i<10)
{i="0" + i}
return i
}
var d = new Date()
document.write(checkTime(d.getUTCHours()))
document.write(".")
document.write(checkTime(d.getUTCMinutes()))
document.write(".")
document.write(checkTime(d.getUTCSeconds()))
免责申明 --------------------------------------------------------------------------------------
以上内容仅代表原创者观点,其内容未经本站证实,中华考试网对以上内容的真实性、完整性不作任何保证或承诺,转载目的在于传递更多信息,由此产生的后果与中华考试网无关;如以上转载内容不慎侵犯了您的权益,请联系我们
,我们将会及时处理。