gpt4 book ai didi

javascript - 为什么我会收到此错误? "Uncaught ReferenceError: title is not defined"

转载 作者:行者123 更新时间:2023-11-28 18:35:16 25 4
gpt4 key购买 nike

我的 JavaScript 中有这段代码

        $('#process-title').html(projectData.process-title);
$('#process-description').html(projectData.process-description);
$('#process-wireframes').empty('');
$.each(projectData.process-wireframes, function(item) {
$('#process-images').append('<div class="project-gallery"><img src='+projectData.process-wireframes[item]+' /></div>')
});

由于某种原因它不起作用,并且目前正在破坏我的网站 http://darrenbachan.com/ 。我不知道如何解决这个问题,我没有 JavaScript 知识,而且我读过的线程使它更难以理解。我如何定义这些,呃,它们是函数吗?

编辑:我忘了提及您需要单击一个项目才能看到错误。

最佳答案

您不能使用这样的连字符属性。浏览器将其解释为如下减法:

projectData.process - title
projectData.process - description
// etc.

You need to access them using strings.

projectData['project-title']
projectData['process-description']
// etc.

关于javascript - 为什么我会收到此错误? "Uncaught ReferenceError: title is not defined",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37219992/

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