用JAVAScript脚本语言设计,在一个input框中显示当前的年、月、日,当鼠标放上去时就变换为当前的时间显示
使用JAVAScript脚本语言设计,在一个input框中显示当前的年、月、日,当鼠标放上去时就变换为当前的时间显示...
使用JAVAScript脚本语言设计,在一个input框中显示当前的年、月、日,当鼠标放上去时就变换为当前的时间显示
展开
3个回答
展开全部
站在前人的肩膀上了,不好意思。把楼上的修改了一下,更完善。
<!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>
<!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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<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>
<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>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<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>
<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>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询