我想在DOM中搜索属性为name = "formName"
的表单。
我尝试使用document.querySelectorAll("[name = formName]")
,但只有当我检查elemnt然后在控制台上输入它时才会有效。
看起来我在页面上有两个IFrame,即所谓的" top"。
答案 0 :(得分:0)
试试这个 -
document.querySelectorAll('[role="contentinfo"]')
它使用querySelectorAll
来选择使用属性(role =“contentinfo”)