gpt4 book ai didi

javascript - newChat.style.setAttribute ("width"、 "100px"); 有什么问题吗?在内容脚本中?

转载 作者:行者123 更新时间:2023-12-03 12:13:20 25 4
gpt4 key购买 nike

这有效:

newChat.style.width = "100px";

但是这个没有:

newChat.style.setAttribute("width", "100px");

两者都位于 content.js(Google 扩展内容脚本)的函数内。

随着第二个我得到:

Uncaught TypeError: undefined is not a function content.js:112
createChat content.js:112
(anonymous function) content.js:137
m.event.dispatch jquery-1.11.1.min.js:3
r.handle

最佳答案

style 是一个 CSSStyleDeclaration 对象,它没有 setAttribute 方法。

您想要使用 setAttribute 设置元素的 style 属性元素的方法,或使用 setProperty CSSStyleDeclaration 对象的方法来设置特定的 css 属性

newChat.setAttribute("style", "width:100px;");
//or
newChat.style.setProperty("width","100px");

关于javascript - newChat.style.setAttribute ("width"、 "100px"); 有什么问题吗?在内容脚本中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24854692/

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