在Javascript中,我需要使用getElementById()
选择子元素:
#topbarsection li a {}
我已经试过了:
topbarsection = document.getElementById('topbarsection>li>a');
还有这个:
topbarsection = document.getElementById('topbarsection li a');
最佳答案
您应将querySelectorAll
用于以下用途:
document.querySelectorAll('#topbarsection > li > a');