如何在同一页面上的 2 个 div 中显示我的 javascript 计数器结果?
我有一个 javascript 计数器(命名为时钟,因为它计算秒数),结果显示在 div 中:
<div id="right">Time: <input id="clock" type="text" value="00:00" style="text-align: left; background:transparent; border-style: none; color:#ffbe5e; margin: 0px; font: 20px shanghai; width:60px;" readonly /></div>
这一切都有效,并且显示计算秒数。现在我想在同一页面的第二个div中显示相同的显示结果,但如何做到这一点?仅仅再次复制并粘贴代码是行不通的。
有什么建议吗?
亲切的问候,
ps 我没有发布 javascript 代码,因为它太大了,无法复制/粘贴到这里。如果您需要,请告诉我
I have a javascript counter (named clock because it counts seconds) where the results are displayed in a div:
<div id="right">Time: <input id="clock" type="text" value="00:00" style="text-align: left; background:transparent; border-style: none; color:#ffbe5e; margin: 0px; font: 20px shanghai; width:60px;" readonly /></div>
This all works and it's displays counting the seconds. Now I want the same display results shown in a sec div at the same page, but how to do this? Simply copy and paste the code again doesn't work.
Any suggestions?
Kind regards,
ps I didn't post the javascript code cause it's a bit too big to copy/paste it in here. If you need it, let me know
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如上面 dgvid 所建议的,请确保您拥有的每个计数器都有单独的 ID。
As dgvid suggested above, please make sure to have separate ids for each counter you have.