用JAVAScript脚本语言设计,在一个input框中显示当前的年、月、日,当鼠标放上去时就变换为当前的时间显示

使用JAVAScript脚本语言设计,在一个input框中显示当前的年、月、日,当鼠标放上去时就变换为当前的时间显示... 使用JAVAScript脚本语言设计,在一个input框中显示当前的年、月、日,当鼠标放上去时就变换为当前的时间显示 展开
 我来答
anywing2000
2010-11-16 · TA获得超过162个赞
知道小有建树答主
回答量:135
采纳率:0%
帮助的人:113万
展开全部
站在前人的肩膀上了,不好意思。把楼上的修改了一下,更完善。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>

<body>
<input type="text" name="date" value="" />
<script type="text/javascript">
var it=document.getElementsByName("date")[0];
function gd(){
it.value=new Date().getFullYear()+'年';
it.value+=new Date().getMonth()+1+'月';
it.value+=new Date().getDate()+'日';
}
gd();

it.onmouseover=function(){it.value=new Date().toLocaleString().match(/(\d{2}:){2}\d{2}/)[0];
this.onmouseout=gd
}
</script>
</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
miniappcy3tv95eaedrf
2010-11-16 · TA获得超过2363个赞
知道大有可为答主
回答量:1909
采纳率:92%
帮助的人:1119万
展开全部
<input type="text" name="date" value="" />
<script type="text/javascript">
var it=document.getElementsByName("date")[0];
function gd(){
it.value=new Date().toLocaleString().replace(/(\d{2}:){2}\d{2}/,'');
}
gd();

it.onmouseover=function(){it.value=new Date().toLocaleString().match(/(\d{2}:){2}\d{2}/)[0];
this.onmouseout=gd
}
</script>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友b0026fc
2010-11-30 · TA获得超过8431个赞
知道大有可为答主
回答量:8845
采纳率:60%
帮助的人:1.7亿
展开全部
<input type="text" id="test" />
<script type="text/javascript">
var t=document.getElementById("test"), d=new Date();
t.value=d.getFullYear()+"-"+(d.getMonth()+1)+"-"+d.getDate();

t.onfocus=function(){
var d=new Date();
t.value=d.getHours()+":"+d.getMinutes()
}
</script>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式