javascript倒计时显示毫秒
我想要倒计时,并希望显示类似分钟:秒:毫秒的格式。我用 jquery 插件 countdown 进行了倒计时,但它只显示分钟:秒格式。 有什么办法可以纠正吗? 非常感谢!
I want to do a count down and want to show like format as Minutes:Seconds:Milliseconds. I made a count down with jquery plug-in countdown but it shows just Minutes:Seconds format.
Is there any way to make it right?
Many Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
大家好,我已经为自己开发了一个代码,使用以下代码
计数器20秒
Hi guys I have developed a code for my self use the following code
counter for 20 seconds
试试这个: http://jsfiddle.net/aamir/TaHtz/76/
HTML:
JS:
Try this: http://jsfiddle.net/aamir/TaHtz/76/
HTML:
JS:
如果你想制作自己的计时器。
阅读之前的问题
如何创建 JQuery 时钟/计时器
If you want to make your own timer.
read this earlier question
How to create a JQuery Clock / Timer
尝试设置格式参数 - http://keith-wood.name/countdownRef.html#format
进一步阅读,这个插件不执行毫秒操作。此时,您要么必须编辑实际的插件代码,要么找到一个新的插件。
Try setting the format parameter - http://keith-wood.name/countdownRef.html#format
On further reading, this plugin doesn't do milliseconds. At this point, you either have to edit the actual plugin code or find a new plugin.
我完全同意@Matt Ball的评论。它也可能导致浏览器崩溃。
为什么不尝试这个解决方案
jQuery 1 分钟倒计时(以毫秒为单位)和回调
I completely agree with @Matt Ball's comment.It may also cause the browser to crash.
Why don't you try this solution instead
jQuery 1 minute countdown with milliseconds and callback
我是这样做的(从 N 到 X (X > N) 的通用计数器):
编辑:更新版本(更灵活 - 对于一个接一个的 N 个元素):
(输入元素是元素的数组,用于使其动态计数)
I did it like this (generic counter from N to X (X > N)):
EDIT: Updated version (more flexible - for N elements one after another):
(input element is Array of elements for making them dynamic-counts)