捕获最后的秒表时间

发布于 2024-10-29 04:44:07 字数 246 浏览 1 评论 0原文

我想使用这个秒表(或类似的东西):

http://www.sivamdesign.com /scripts/dwld/stopwtch.txt

但我需要捕获它停止的最后时间,然后将其存储为变量(以便稍后将其添加到数据库中)。是否可以将时间捕获为变量?

感谢您的帮助

I want to use this stopwatch (or something similar):

http://www.sivamdesign.com/scripts/dwld/stopwtch.txt

but I will need to capture the final time that it is stopped on, and then store it as a variable (so I can later add it into a database). Is it possible to capture the time as a variable?

Thanks for any help

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

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

发布评论

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

评论(1

银河中√捞星星 2024-11-05 04:44:07

如果您使用您提供的脚本,您可以通过

document.clock.stwa.value

或 获取部分来访问最终时间,您可以访问变量分钟小时

最后的时间你打算做什么?

编辑:
然后,您可以通过 AJAX 发布值,也可以仅在值文本框周围添加表单标签并添加提交按钮(或在用户点击“停止”时提交值)。要开始页面加载,请添加以下内容:

window.onload = function()
{
  stopwatch('Start');
}

If you're using the script you provided, you can access the final time via

document.clock.stwa.value

or to get the parts, you can access the vars sec, min and hour.

What are you planning on doing with the final time?

Edit:
Then you can either post the value via AJAX or just throw form tags around the value textbox and add a submit button (or submit the value when user hits "Stop"). To start on page load, add this:

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