怎么只是显示时间啊,格式"时:分:秒"?
date = new Date();document.write(date.getHours() + ":" + date.getMinues() + ":" + date.getSeconds());