Posted in Javascript onMay 24, 2013
jQuery部分代码:
<script type="text/javascript"> function current(){ var d=new Date(),str=''; str +=d.getFullYear()+'年'; //获取当前年份 str +=d.getMonth()+1+'月'; //获取当前月份(0——11) str +=d.getDate()+'日'; str +=d.getHours()+'时'; str +=d.getMinutes()+'分'; str +=d.getSeconds()+'秒'; return str; } setInterval(function(){$("#nowTime").html(current)},1000); </script>
html部分代码:
<div id="nowTime"></div>
jQuery动态地获取系统时间实现代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@