This article is a mirror article of machine translation, please click here to jump to the original article.

View: 13542|Reply: 0

[Jquery] jquery displays the current system date and time in real time

[Copy link]
Posted on 8/1/2015 4:26:46 PM | | | |


  1. setInterval(function() {
  2.     var now = (new Date()).toLocaleString();
  3.     $('#current-time').text(now);
  4. }, 1000);
Copy code
Let's assume that the element ID you use to display time is current-time
  1. <div id="current-time"></div>
Copy code
Note: You don't need to write it in $(document).ready(function(){}).




Previous:Linq to SQL efficiency issues for deleting or emptying tables
Next:DedeCMS fully kills SQL injection exploit code and tools
Disclaimer:
All software, programming materials or articles published by Code Farmer Network are only for learning and research purposes; The above content shall not be used for commercial or illegal purposes, otherwise, users shall bear all consequences. The information on this site comes from the Internet, and copyright disputes have nothing to do with this site. You must completely delete the above content from your computer within 24 hours of downloading. If you like the program, please support genuine software, purchase registration, and get better genuine services. If there is any infringement, please contact us by email.

Mail To:help@itsvse.com