gpt4 book ai didi

javascript - 使用 JS 更改标签的属性

转载 作者:太空宇宙 更新时间:2023-11-04 14:41:42 24 4
gpt4 key购买 nike

如何使用 JS 更改标签的属性?我试过这些代码,但它不适用于单选按钮。

JS代码

obj = document.getElementById("personne").style;
if (str[0] == 'c')
obj.disabled = false;

HTML代码

<input id="personne" type="radio" name="choice" value="personne" disabled />

在这里,我试图将单选按钮的 disabled 属性更改为 enabled。有什么帮助吗?

最佳答案

尝试

if (str[0] === "c") {
document.getElementById("personne").disabled = false;
}

disabledinput 元素的属性不是样式,因此访问 元素的 style 属性不正确。

我用过 strict equality comparison operators (这是 JavaScript 的最佳实践),我已经删除了你无意中从 not declaring your variables with var 中泄露的全局变量。 .

关于javascript - 使用 JS 更改标签的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18262986/

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