将纪元时间附加到 url

发布于 2024-11-16 11:43:39 字数 452 浏览 4 评论 0原文

您好,我正在尝试将当前纪元时间附加到网址中,因此 onclick 将从网址中获取一个页面,其结构如下:

http://example.com/grab.php?ans_id=value1&d=epoch 时间

例如:

http://example.com/grab.php?ans_id=254&d=1308264776271

我可以获取在 javascript 中生成的纪元时间,但无法将其附加到 url :(

感谢任何帮助

Hi I'm trying to append the current epoch time to a url, so onclick it would get a page from the url structured as the following :

http://example.com/grab.php?ans_id=value1&d=epoch time

So for example:

http://example.com/grab.php?ans_id=254&d=1308264776271

I can get the epoch time generated in javascript but cant get it appended to the url :(

any help is appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁对谁错谁最难过 2024-11-23 11:43:39

这是一个例子。它获取您单击的链接的 href,添加当前纪元并将您发送到该页面。

JSFiddle

Here is an example. It takes the href of the link you click on, adds the current epoch stamp and sends you to that page.

JSFiddle

蓝戈者 2024-11-23 11:43:39

只需将此代码放入 JavaScript 文件中,然后调用 updateEpoch() 在 URL 中设置纪元:

function updateEpoch(){
    if(/&d=(.*)/.test(location.href)){
        location = location.href.replace(/&d=(.*)/,"&d="+(new Date().getTime()));
    }else{
        location.href += "&d="+(new Date().getTime());
    }
}

Ad@m

Simply put this code in your JavaScript file and then call updateEpoch() to set the epoch in the URL:

function updateEpoch(){
    if(/&d=(.*)/.test(location.href)){
        location = location.href.replace(/&d=(.*)/,"&d="+(new Date().getTime()));
    }else{
        location.href += "&d="+(new Date().getTime());
    }
}

Ad@m

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文