在HREF中插入时间戳

Insert timestamp in HREF

本文关键字:时间戳 插入 HREF      更新时间:2023-09-26

我必须在HREF链接中包含一个时间戳。我只能使用一个内联代码,例如:

<A HREF="https://ad.doubleclick.net;ord=javascript:time();">

我可以看到,当页面显示时,time()函数没有在链接上翻译。我需要这样的内容:

<A HREF="https://ad.doubleclick.net;ord=1471189126">

帮忙吗?

使用Javascript设置href:

document.getElementById('idOfAnchor').href = "https://ad.doubleclick.net;ord=" + time();