如何在浏览器控制台中使用JS查找特定元素?

时间:2018-01-24 13:20:02

标签: javascript html

我想在DOM中搜索属性为name = "formName"的表单。

我尝试使用document.querySelectorAll("[name = formName]"),但只有当我检查elemnt然后在控制台上输入它时才会有效。

看起来我在页面上有两个IFrame,即所谓的" top"。

无论选择何种文件,我如何搜索特定元素? 或至少来自" top"。 enter image description here

1 个答案:

答案 0 :(得分:0)

试试这个 -

document.querySelectorAll('[role="contentinfo"]')

它使用querySelectorAll来选择使用属性(role =“contentinfo”)