更新 JavaScript

发布于 2024-08-17 15:21:12 字数 363 浏览 6 评论 0原文

我正在尝试用 Javascript 创建一个更新时钟。当我单步执行调试器时,一切都正常工作,只是它实际上并未更新跨度。有什么想法吗?

<script type="text/javascript">
// The following line of code is in a setInterval() 
// time is set correctly, according to my debugger
 document.getElementById('clock').value = time;
}
</script>
<span id="clock">This should update
</span>

I'm trying to create an updating clock in Javascript. Everything is working correctly as I step through the debugger, except that it's not actually updating the span. Any ideas why?

<script type="text/javascript">
// The following line of code is in a setInterval() 
// time is set correctly, according to my debugger
 document.getElementById('clock').value = time;
}
</script>
<span id="clock">This should update
</span>

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

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

发布评论

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

评论(2

揽月 2024-08-24 15:21:12

value 更改为 innerHTML

document.getElementById('clock').innerHTML = time;

value 仅是 inputoption 等表单元素的有效属性代码>.

Change value to innerHTML

document.getElementById('clock').innerHTML = time;

value is only a valid attribute for form elements like input or option.

向地狱狂奔 2024-08-24 15:21:12

另外,要刷新它(如果您正在做时钟),请使用 window.setTimeout;

window.setTimeout(function() { document.getElementById('clock').innerHTML = 'XYZ'; }, 500);

500 是毫秒值。

Also, to have it refresh (if you are doing a clock), use window.setTimeout;

window.setTimeout(function() { document.getElementById('clock').innerHTML = 'XYZ'; }, 500);

500 is millisecond value.

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