如何修复“无法设置未定义的属性”? [关闭]

Posted

技术标签:

【中文标题】如何修复“无法设置未定义的属性”? [关闭]【英文标题】:How do I fix "Cannot set property of undefined"? [closed] 【发布时间】:2021-02-04 22:24:18 【问题描述】:

当用户按下按钮时,我试图为我的可编辑 div 框设置背景颜色,但是当按下按钮时,除了背景颜色之外的所有内容都会发生变化:

function saveBio() 

 let biography = document.getElementById("bio-content").innerhtml;
  biography = localStorage.setItem('bio', biography);

 let content = document.getElementById("bio-content").setAttribute("contenteditable", false).backgroundColor = "green";`

我得到错误:

TypeError: 无法设置未定义的属性“背景颜色”。

我已经在网上寻找解决方案,甚至关于这个问题的类似问题,但他们并没有真正帮助我寻找什么。我究竟做错了什么?为什么控制台显示为未定义?

我什至完成了:

let content = document.getElementById("bio-content").setAttribute("contenteditable", false).style.backgroundColor = "green";

尽管风格不属于那里。

控制台返回: 类型错误:无法读取未定义的属性“样式”。

我该如何解决这个问题?

【问题讨论】:

setAttribute() 不返回值 ~ developer.mozilla.org/en-US/docs/Web/API/Element/… Despite style not belonging there 如果你可以“链接”这样的方法,那么风格肯定属于那里......即document.getElementById("bio-content").style.backgroundColor = "green"; 是正确的,但document.getElementById("bio-content").backgroundColor = "green"; 不是 【参考方案1】:
let content = document.getElementById("bio-content").setAttribute("contenteditable", false).backgroundColor = "green";`

这里的问题是,如下:

document.getElementById("bio-content").setAttribute("contenteditable", false)

将返回 undefined,这会阻止您链接其他调用。

您可以保存元素引用,然后进行更改:

const element = document.getElementById("bio-content");
element.setAttribute("contenteditable", false)
element.style.backgroundColor = "green";

【讨论】:

以上是关于如何修复“无法设置未定义的属性”? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

jQuery如何修复无法设置未定义的属性'_DT_CellIndex'?

如何解决 Bootstrap node.js 应用程序中的错误“无法设置未定义的属性 'emulateTransitionEnd'”?

在 Typescript 中创建对象并添加值无法设置未定义的属性“X”

反应音频无法设置未定义的属性“音量”

JavaScript - 无法设置未定义的属性

JavaScript - 无法设置未定义的属性