Blogger Information
Blog 1
fans 0
comment 0
visits 1619
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
网站想要显示运行天数,这样做行了
大北SEO_分享一些网站优化技术
Original
1622 people have browsed it

我们经常可以看到一个现象,别人网站可以显示出运行的天数以及时间。这样的效果,让我们感觉到很有趣。这的效果实在怎样达到的呢?其实网站想要显示运行天数,这样做行了。



一、首先我们要做的就是在你想要的位置上添加这么一段文字代码:<a>本站已经运行<a id="days">0</a>天</a> 。这段字符的意思是显示出你网站所运行的天数,是完全根据你的网站运行时间来决定的。

二、然后再添加一下,如下代码:

<script> 

var s1 = '2018-05-20'; 

s1 = new Date(s1.replace(/-/g, "/")); 

s2 = new Date(); 

var days = s2.getTime() - s1.getTime(); 

var number_of_days = parseInt(days / (1000 * 60 * 60 * 24)); 

document.getElementById('days').innerHTML = number_of_days; 

</script> 

同样,深圳SEO解释一下这段字符的意思。刚讲了,<a>本站已经运行<a id="days">0</a>天</a> 是在网页上表达网站运行的天数的。那么与之对应的,也应该有一个,后台运行的数据。添加这段代码到任意位置,即可显示网站天数。

三、更新网站缓存。补充一点,假如想要显示网站时分秒,那么直接添加对应的代码就行了。

基本上照着做的话,应该很快就能显示网站想要显示的运行天数。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post