我可以 select 一个元素并像这样更改类名吗?
Can I select an element and change Classname like this?
function name() {
const select = document.querySelector("#id");
select.classname = ("customclass")
}
这段代码是我写的。但是我无法更改类名。
function name() {
const select = document.querySelector("#id");
select.classname = ("customclass")
}
这段代码是我写的。但是我无法更改类名。