我无法使用javascript访问我的<a>标记?

时间:2019-07-26 14:18:51

标签: javascript html

我已经通过其他功能生成了标签,并且我还有另一个功能需要点击其中一个标签。

当我在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
}

控制台输出:

output

0 个答案:

没有答案