gpt4 book ai didi

javascript - 使用 javascript 更改 css 样式 "-"

转载 作者:行者123 更新时间:2023-11-30 23:58:29 25 4
gpt4 key购买 nike

我正在学习如何使用 javascript 更改 css:

img.style.border-radius = "100%"
img.style.border = "9px solid #ffffff"
img.style.box-shadow = "0px 0px 5px #00000070"
img.style.margin = "20px"

如何更改名称中带有“-”的样式?这可能很简单,但我没有找到方法。

让我借此机会问一下:有没有一种有用/有效的方法使用 JS 来做到这一点?

最佳答案

您可以使用此表示法 ( square bracket notation ):

const x = document.querySelector("div");
x.style["border-radius"] = "100%";
x.style.border = "9px solid #ffffff";
x.style["box-shadow"] = "0px 0px 5px #00000070";
x.style.margin = "20px";
x.style["text-align"] = "center";
<div>Hi there</div>

关于javascript - 使用 javascript 更改 css 样式 "-",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60904228/

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