想问一下 我这里想获取最后一个方块
document.querySelector('.js-calendar-graph-svg>g g:last-child rect:last-child')
这么写感觉没有问题呀,可是为啥获取不到呢?
1
Mutoo 2020-01-30 19:27:40 +08:00 1
document.querySelectorAll('g[transform]:last-of-type > rect:last-child')
|