function clock(){
var attime;
var time=new Date();
attime=time.getHours()+"时"+time.getMinutes()+"分" +time.getSeconds()+"秒";
document.getElementById("clock").value = attime;
}
setInterval(clock,60000);
没有啊?多半是慕课的编辑器的问题,你把代码拷贝到自己的软件上去试一下