gpt4 book ai didi

javascript - js未定义错误

转载 作者:行者123 更新时间:2023-12-02 20:20:27 24 4
gpt4 key购买 nike

如何获得错误信息的好方法来解决?错误消息:timetotal 未定义。

 $(document).ready(function() {
if (typeof(timeleft) !== 'undefined') {
Chrono.update();
}
$('a.add_other_answer').click(function() {
addAnswer();
});
});

Chrono = {
warning: timetotal * 0.25,
critical: timetotal * 0.05,

update: function() {
...
...

最佳答案

即使您的代码示例不完整,这似乎也是不言自明的。

timetotal 很可能在这一行未定义,因为它作为对象 Chrono 的属性传递:

warning: timetotal * 0.25,

您很可能在 Chrono.update 方法中增加 timetotal,但这已经太晚了:如果您想将其与0.250.05

解决方案:

var timetotal = 0;

Chrono = {
warning: timetotal * 0.25,
critical: timetotal * 0.05,

关于javascript - js未定义错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5661281/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com