使用Typescript循环遍历document.querySelectorAll(' .calendar-table td .available')或className等元素的最佳方法是什么?
我使用Javascript找到了许多答案,但其中一些代码更清晰,并不是所有浏览器都支持(.forEach为例子,但由于Typescript编译回javascript,那么应该有一些很好的解决方案适用于所有浏览器?谢谢
答案 0 :(得分:0)
只需使用Array.from
,例如const arr = Array.from(document.querySelectorAll('.calendar-table td .available'))
并使用您的标准循环,例如.forEach
等。