asp.net如何实现与系统同步显示时间
我的代码是这样,为什么执行没有反应呀,也没有效果:<scripttype="text/javascript">functionshow(){vartime=newDate...
我的代码是这样,为什么执行没有反应呀,也没有效果:
<script type="text/javascript">
function show()
{
var time=new Date();
var hours=time.getHours();
var minutes=time.getMinutes();
var seconds=time.getSeconds();
document.Form1.TextBox1.value=hours+ ": "+minutes+ ": "+seconds;
}
window.setInterval( "show() ",1000);
</script>
</head>
<body onload="show()">
<form id="form1" runat="server">
<center style="margin-top :100px">
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </center>
</form>
</body> 展开
<script type="text/javascript">
function show()
{
var time=new Date();
var hours=time.getHours();
var minutes=time.getMinutes();
var seconds=time.getSeconds();
document.Form1.TextBox1.value=hours+ ": "+minutes+ ": "+seconds;
}
window.setInterval( "show() ",1000);
</script>
</head>
<body onload="show()">
<form id="form1" runat="server">
<center style="margin-top :100px">
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </center>
</form>
</body> 展开
展开全部
你这个代码就是调用了 一次 window.setInterval( "show() ",1000); 和运行了两次 function show()
你要把
window.setInterval( "show() ",1000); 写到function show()这个里面,让他们互相调用
你要把
window.setInterval( "show() ",1000); 写到function show()这个里面,让他们互相调用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
最好从服务器取时间。不要从客户端。javascript取的是客户端的时间以你的机器时间为准。类似团购中的倒计时,一般都是取的服务器上的时间。
asp.net取服务器时间很简单DateTime date=DateTime.Now();
asp.net取服务器时间很简单DateTime date=DateTime.Now();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function show()
{
var time=new Date();
var hours=time.getHours();
var minutes=time.getMinutes();
var seconds=time.getSeconds();
document.getElementById("TextBox1").value=hours+ ": "+minutes+ ": "+seconds;
window.setTimeout("show();", 1000);
}
{
var time=new Date();
var hours=time.getHours();
var minutes=time.getMinutes();
var seconds=time.getSeconds();
document.getElementById("TextBox1").value=hours+ ": "+minutes+ ": "+seconds;
window.setTimeout("show();", 1000);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
document.Form1.TextBox1.value=hours+ ": "+minutes+ ": "+seconds;
是这步错了吧
document.getElementById("TextBox1").value=hours+ ": "+minutes+ ": "+seconds;
是这步错了吧
document.getElementById("TextBox1").value=hours+ ": "+minutes+ ": "+seconds;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把过一秒再次执行 放在方法里面吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询