如题!!!!!
document.getElementById("clock").value = attime;
你把时间字符串赋值给input对象的value就是填写了文本框,
想在其他地方显示就给其它地方的对象赋值,比如:
显示到文档就document.write(attime);
显示到某个标签里就,document.getElementById("某个标签的id 如<span>").innerHTML = attime;