在C#中怎样才能使获取的时间是并随电脑自动改变?需要代码。
展开全部
js脚本:
function Clock() { var date = new Date();
this.year = date.getFullYear();
this.month = date.getMonth() + 1;
this.date = date.getDate();
this.day = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六")[date.getDay()];
this.hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
this.minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
this.second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
this.toString = function() { return "现在是:" + this.year + "年" + this.month + "月" + this.date + "日 " + this.hour + ":" + this.minute + ":" + this.second + " " + this.day;
};
this.toSimpleDate = function() {
return this.year + "-" + this.month + "-" + this.date;
};
this.toDetailDate = function() {
return this.year + "-" + this.month + "-" + this.date + " " + this.hour + ":" + this.minute + ":" + this.second;
};
this.display = function(ele) {
var clock = new Clock();
ele.innerHTML = clock.toString();
window.setTimeout(function() {clock.display(ele);}, 1000);
};
}
页面:
<script type="text/javascript">
var clock = new Clock();
clock.display(document.getElementById("clock"));
</script>
将下面这句放在你所需要放在的地方:<center><span id="clock"></span></center>
function Clock() { var date = new Date();
this.year = date.getFullYear();
this.month = date.getMonth() + 1;
this.date = date.getDate();
this.day = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六")[date.getDay()];
this.hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
this.minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
this.second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
this.toString = function() { return "现在是:" + this.year + "年" + this.month + "月" + this.date + "日 " + this.hour + ":" + this.minute + ":" + this.second + " " + this.day;
};
this.toSimpleDate = function() {
return this.year + "-" + this.month + "-" + this.date;
};
this.toDetailDate = function() {
return this.year + "-" + this.month + "-" + this.date + " " + this.hour + ":" + this.minute + ":" + this.second;
};
this.display = function(ele) {
var clock = new Clock();
ele.innerHTML = clock.toString();
window.setTimeout(function() {clock.display(ele);}, 1000);
};
}
页面:
<script type="text/javascript">
var clock = new Clock();
clock.display(document.getElementById("clock"));
</script>
将下面这句放在你所需要放在的地方:<center><span id="clock"></span></center>
追问
能间接点吗?只要时间,不要日期和星期。
追答
我晕!你真牛! 你在这里面修改你需要显示东西就行了啊!你到底会 不会啊 ?
this.toString = function() { return "现在是:" + this.year + "年" + this.month + "月" + this.date + "日 " + this.hour + ":" + this.minute + ":" + this.second + " " + this.day;
来自:求助得到的回答
展开全部
datatime dat
dat = datatime.now()
好像是这样忘了
dat = datatime.now()
好像是这样忘了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
弄个标签/文本框,还有一个定时器(timer),设置定时器每隔1秒自动获取当前时间并显示到标签/文本框上。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
即时刷新。。
还有一种方法是,获取当前时间。如果是winfrom的话加个时间控件,然后加上获取的时间做为显示时间;如果是web的话用datetime
还有一种方法是,获取当前时间。如果是winfrom的话加个时间控件,然后加上获取的时间做为显示时间;如果是web的话用datetime
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一秒获取一次当前时间
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询