如何设置获取当前系统时间至input文本框
<inputname="time"type="text"value=""><inputtype="button"name=buttonvalue="获取当前系统时间至文本...
<input name="time" type="text" value="">
<input type="button" name=button value="获取当前系统时间至文本框" onclick="javascript:time.value=new Date().toLocaleString()" >
这样获取的样式是 2010年7月7日 星期三 1:45:25 这样的样式
我要获取系统时间至文本框,而且样式是2010-07-07 00:18:21 这样的!
高人帮忙~
兄弟 谢谢啦
不过我要的是按钮啊,点击按钮之后在获取至文本框
===================================================
大哥 我不会写啊,我才刚接触!哎~
要是会写我该看懂了!
你都写的差不多了,那个什么事件也帮写下不? 展开
<input type="button" name=button value="获取当前系统时间至文本框" onclick="javascript:time.value=new Date().toLocaleString()" >
这样获取的样式是 2010年7月7日 星期三 1:45:25 这样的样式
我要获取系统时间至文本框,而且样式是2010-07-07 00:18:21 这样的!
高人帮忙~
兄弟 谢谢啦
不过我要的是按钮啊,点击按钮之后在获取至文本框
===================================================
大哥 我不会写啊,我才刚接触!哎~
要是会写我该看懂了!
你都写的差不多了,那个什么事件也帮写下不? 展开
展开全部
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html,输入问题基础代码。
2、在index.html中的<script>标签,输入js代码:
var d = new Date();
var time = d.getFullYear() + '-' + (d.getMonth() + 1) + '-' + d.getDate()+ ' ' + d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds();
$('input').val(time);
3、浏览器运行index.html页面,此时获取了当前系统时间到input文本框。
展开全部
……
使用一楼的代码,把window.onload = tick;去掉,然后在表格里面加个
<input type='botton' onclick='javascript:tick()' value='显示时间'>就完了
使用一楼的代码,把window.onload = tick;去掉,然后在表格里面加个
<input type='botton' onclick='javascript:tick()' value='显示时间'>就完了
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%@ page contentType="text/html; charset=gb2312" language="java"%>
<HTML><HEAD>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<STYLE>TD {
FONT-SIZE: 12px; COLOR: #ffffff; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif
}
</STYLE>
<script language="JavaScript">
<!--
function tick() {
var hours, minutes, seconds;
var intHours, intMinutes, intSeconds,intYear ,intMonth ,intdat ;
var today;
today = new Date();
intYear = today.getYear();
intMonth = today.getMonth()+1;
intdat = today.getDate();
intHours = today.getHours();
intMinutes = today.getMinutes();
intSeconds = today.getSeconds();
if (intHours == 0) {
hours = "00:";
} else if (intHours < 10) {
hours = "0" + intHours+":";
} else {
hours = intHours + ":";
}
if (intMinutes < 10) {
minutes = "0"+intMinutes+":";
} else {
minutes = intMinutes+":";
}
if (intSeconds < 10) {
seconds = "0"+intSeconds+" ";
} else {
seconds = intSeconds+" ";
}
timeString = intYear+"-"+intMonth+"-"+intdat+" "+hours+minutes+seconds;
//Clock.innerHTML = timeString;
document.getElementById('time').value=timeString;
window.setTimeout("tick();", 1000);
}
window.onload = tick;
//-->
</script>
</HEAD>
<BODY leftMargin=0 topMargin=0 marginheight="0" marginwidth="0">
<TABLE height="100%" cellSpacing=2 cellPadding=0 width="100%" border=0>
<TR>
<TD align=right width=109 nowrap="nowrap">
<span id="Clock"></span></TD>
<TD align=right width=60> </TD>
<TD width="*" align="center" nowrap="nowrap"> <input name="time" type="text" value="">
</TD>
<TD
style="FONT-WEIGHT: bolder; FILTER: shadow(Color=#000000,direction=180)"
align=right width=250 nowrap="nowrap">
</TD></TR>
</TABLE>
</BODY></HTML>
写这么多 很辛苦啊 要记的给我分啊
只是写一个BUTTON事件不会吗?这么懒你也不适合学编程
<HTML><HEAD>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<STYLE>TD {
FONT-SIZE: 12px; COLOR: #ffffff; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif
}
</STYLE>
<script language="JavaScript">
<!--
function tick() {
var hours, minutes, seconds;
var intHours, intMinutes, intSeconds,intYear ,intMonth ,intdat ;
var today;
today = new Date();
intYear = today.getYear();
intMonth = today.getMonth()+1;
intdat = today.getDate();
intHours = today.getHours();
intMinutes = today.getMinutes();
intSeconds = today.getSeconds();
if (intHours == 0) {
hours = "00:";
} else if (intHours < 10) {
hours = "0" + intHours+":";
} else {
hours = intHours + ":";
}
if (intMinutes < 10) {
minutes = "0"+intMinutes+":";
} else {
minutes = intMinutes+":";
}
if (intSeconds < 10) {
seconds = "0"+intSeconds+" ";
} else {
seconds = intSeconds+" ";
}
timeString = intYear+"-"+intMonth+"-"+intdat+" "+hours+minutes+seconds;
//Clock.innerHTML = timeString;
document.getElementById('time').value=timeString;
window.setTimeout("tick();", 1000);
}
window.onload = tick;
//-->
</script>
</HEAD>
<BODY leftMargin=0 topMargin=0 marginheight="0" marginwidth="0">
<TABLE height="100%" cellSpacing=2 cellPadding=0 width="100%" border=0>
<TR>
<TD align=right width=109 nowrap="nowrap">
<span id="Clock"></span></TD>
<TD align=right width=60> </TD>
<TD width="*" align="center" nowrap="nowrap"> <input name="time" type="text" value="">
</TD>
<TD
style="FONT-WEIGHT: bolder; FILTER: shadow(Color=#000000,direction=180)"
align=right width=250 nowrap="nowrap">
</TD></TR>
</TABLE>
</BODY></HTML>
写这么多 很辛苦啊 要记的给我分啊
只是写一个BUTTON事件不会吗?这么懒你也不适合学编程
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询