ts报错 ts:Property ‘style‘ does not exist on type ‘Element‘.

problem

ts报错 ts:Property ‘style’ does not exist on type ‘Element’.

firstEle.style.flexGrow = 1

reason

style 不是 Element 的属性

solution

const firstEle:HTMLElement = document.querySelector('.accordion-item')!
firstEle["style"].flexGrow = '1'

猜你喜欢

转载自blog.csdn.net/qubes/article/details/129881961
今日推荐