gpt4 book ai didi

JavaScript 仅适用于在浏览器调试器中设置的断点

转载 作者:行者123 更新时间:2023-11-30 06:51:38 26 4
gpt4 key购买 nike

<分区>

我在 JavaScript 中有一个基本函数,它只需要一些预设值并通过使用预制函数将它们放到屏幕上。当我在我正在做的事情的第一行断点时,页面加载正常,正如预期的那样,但是一旦我删除该断点,就不会设置任何信息。页面是空白的。

this.QuizSelection = function () {
// Fill the ID's with the right info
app.SetBackground('head', this.HeroImage);
console.log('1 ' + this.HeroImage);
app.LoadInnerHTML('breadcrumbs', 'Home / ' + this.Title);
app.LoadInnerHTML('quizSelectionTitle',this.Title);
console.log('2 ' + this.Title);
app.LoadInnerHTML('quizSelectionIntro',this.Introduction);
console.log('3 ' + this.Introduction);
// Show the Quiz Selection and Heading
app.ShowSection('head');
app.ShowSection('quizSelection');
console.log('Quiz Selection');
}.bind(this);

其中的函数(SetBackground 和 LoadInnerHTML)只是更改内部 html 和设置背景图像的一小行函数。

// Change Inner HTML
this.LoadInnerHTML = function (id, html) {
var d = document.getElementById(id);
d.innerHTML = html;
}

// Set Background Image
this.SetBackground = function (id, image) {
document.getElementById(id).style.backgroundImage = 'url(image)';
}

我不明白为什么它在断点未打开时不起作用。显然它确实有效,因为断点打开时一切都很好,但是当断点关闭时,我得到的输出到控制台的结果是:

1     
2
3 undefined
Quiz Selection

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