我已经通过其他功能生成了标签,并且我还有另一个功能需要点击其中一个标签。
当我在console.log上的div处显示标签的位置时,但是当我尝试单独访问它们时,会出现错误或空值。
console.log(document.getElementById('MMSFLE'));
console.log(document.getElementById('dropdown-content'));
document.getElementById('MMSFLE').click();
<body onload='generateDropDown();'
<div id='dropdown-content' class=\"dropdown-content\" >
</div>
</body>
function generateDropDown(){
//alot of code
//adds an <a> tag and appendChilds to the dropdown-content div.
//this function works
}
控制台输出: