将纪元时间附加到 url
您好,我正在尝试将当前纪元时间附加到网址中,因此 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个例子。它获取您单击的链接的 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
只需将此代码放入 JavaScript 文件中,然后调用
updateEpoch()
在 URL 中设置纪元:Ad@m
Simply put this code in your JavaScript file and then call
updateEpoch()
to set the epoch in the URL:Ad@m