已经实现基本的复制功能,不过复制过去的都是刷新页面的时间。希望能复制按键动作时间,求助各路高手帮忙。
具体代码如下:
var theDate = new Date();
var theYear = theDate.getFullYear();
var theMonth = theDate.getMonth() + 1;
var theDay = theDate.getDate();
var theHour = theDate.getHours();
var theMinute = theDate.getMinutes();
function addtime()
{document.formLog.textareaLog.value ="【対応开始时间】"+ theYear +"年"+ theMonth+"月" +theDay+"日" +theHour + "时" + theMinute + "分" + "\n\n" + document.formLog.textareaLog.value;}
抱歉,我说的有点儿不明白。整体工具是个记录工具,想设置一个按键将当时的按键时间粘贴到下面的一个录入框中。目前实现的内容是将页面刷新时间粘贴到对话框中了。本人java知识基本为零,忘能详细指点
追答onclick事件会用吗?
追问目前不会 望指点
追答触发按钮执行onclick事件就会调用下面的函数time()方法就可以获取时间啦!
function time(){
var now=new Date();
var month=now.getMonth()+1;
var day=now.getDate();
var hour=now.getHours();
var min=now.getMinutes();
var s=now.getSeconds();
setTimeout("time()",1000);
document.mytime.nowtime.value="当前时间:"month+"月"+day+"日"+hour+"时"+min+"分"+s+"秒"; setTimeout("time()",1000);
}
getMonth()值从0开始到11,所以实际值要加1
getDate()是取号数
getDay()是取星期数
可否加Q详聊 76663458
追答可以啊!
本回答被提问者采纳