我对 Typescript 有疑问,我正在尝试在 HTMLElement 上应用样式,代码如下:
styleChoice(element:HTMLElement){
console.log(element);
element.style.background="rgba(228, 48, 48, 0.2)";
element.style.borderRadius="40px";
}
test(){
console.log(document.getElementById('test'));
this.styleChoice(document.getElementById('test'));
}
我不明白为什么不工作。