我试图创建一个具有特定类名的HTML元素,因此当内容在DOM上时,CSS样式可以应用于它。这可能吗?
创建元素并在其中插入class。
,
// inside createElement function you have to type the tag name
const element = document.createElement('div')
element.classList.add('class-name')
// then you need to insert the element inside any element you want ( for example body element )
document.body.appendChild(element)
正如@Mina所说,你可以使用element.classList.add("myClass")
。