gpt4 book ai didi

javascript - 使用变量通过 javascript 更改 css 的百分比元素

转载 作者:行者123 更新时间:2023-11-28 13:26:55 26 4
gpt4 key购买 nike

我正在尝试使用 javascript 更改我的 div 的宽度值。使用:

document.getElementById("id").style.width = "25%";

适用于字符串文字,但我想使用变量设置值。

最佳答案

当连接字符串和变量时,javascript 将使用它们的字符串表示形式,请尝试以下操作:

var variable = 25;
document.getElementById("id").style.width = variable + "%";

关于javascript - 使用变量通过 javascript 更改 css 的百分比元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13366076/

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