Advertisement
ilyakanyshev

vk.com time

Apr 7th, 2020
485
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.onload = function() {
  2.   let div = document.createElement('div');
  3.   div.className = "time";
  4.   div.innerHTML = "Время <br><div id=\"timeUpdate\">31 Apr 2020 <br> 24:34</div>";
  5.   document.body.append(div);
  6.   a = setInterval(function() {
  7.     let div = document.getElementById('timeUpdate');
  8.     dt = Date().substr(4,20)
  9.     div.innerHTML = dt.substr(4, 2) + " " + dt.substr(0,3) + " " + dt.substr(7, 4) + "<br>" + dt.substr(12, 8);
  10.   },1000)
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement