在主页上最后修改的日期

时间:2017-10-26 18:44:56

标签: javascript html css

我似乎无法找到类似的问题,所以重定向会非常感激。我的问题:我已经将以下Javascript插入到我的网站的页脚中,但是,不是只是出现在主页的底部,而是弹出时间戳...导航栏中的一些链接“ t链接到页面,但到时间戳。 (即关于> Versioning =呈现上次修改的日期)。如何将其锚定到主页面的页脚?

感谢您的帮助!

网站:www.huondauvergne.org

脚本:

var m = "This page was last updated: " + document.lastModified;
var p = m.length-8;
document.writeln("<center>");
document.write(m.substring(p, 0));
document.writeln("</center>");

1 个答案:

答案 0 :(得分:0)

选项1:

如果检查当前的url路径,请将时间戳写入一个。

因此,如果您的主页位于www.abc.com,您可以

if (location.pathname == '/') {
   // Insert timestamp writing code here
}

如果是www.abc.com/index.html,那么你可以

if (location.pathname == '/index.html') {
  // Insert timestamp writing code here
}

基本上,无论您的主页与域名相关,都是您要检查的地方。

选项2:

主页上的Javascript插入时间戳:

HTML:

<footer>
  <!-- Footer stuff -->
  <span id="lastModified"></span>
</footer>

主页上的Javascript / jQuery:

$(document).ready(function () {
   $("#lastModified").text('Last modified on ' + lastModified);
});