• 正在查找将来过去时的官方设定集?不如看看万界大百科吧!
  • 《将来过去时》第一部分 现在 魔科纪元的少年少女 即将正式发布!
  • 让我偷偷看一眼小鱼君的博客……
  • 服务器已成功迁移到 阿里云(杭州)

“Html:Clock”的版本间的差异

来自小鱼君和他的朋友们
([InPageEdit] 没有编辑摘要)
([InPageEdit] 没有编辑摘要)
第1行: 第1行:
 
<html><span class="clock"></span><script>
 
<html><span class="clock"></span><script>
;(function(){
+
window.addEventListener('load',function(){
  var clockFunction = setInterval(function(){
+
setInterval(function(){
    document.querySelectorAll('.clock').innerHTML = new Date().toLocaleString();
+
   var time = new Date();
 +
   var timestring = time.toLocaleString();
 +
    document.querySelectorAll('.clock').innerHTML = timestring;
 
   },1000);
 
   },1000);
}());
+
});
 
</script></html>
 
</script></html>

2019年11月20日 (三) 04:12的版本