我试图遍历页面上的所有元素,所以我想检查此页面上存在的每个元素是否有特殊类。
因此,怎么说我要检查每个元素?
您可以将传递给*
,getElementsByTagName()
以便它将返回页面中的所有元素:
var all = document.getElementsByTagName("*");
for (var i=0, max=all.length; i < max; i++) {
// Do something with the element here
}
请注意querySelectorAll()
,如果可用(可以使用IE9 +,IE8中的CSS),可以使用来查找具有特定类的元素。
if (document.querySelectorAll)
var clsElements = document.querySelectorAll(".mySpeshalClass");
else
// loop through all elements instead
对于现代浏览器来说,这无疑会加速事情的发展。
浏览器现在在NodeList上支持foreach。这意味着您可以直接循环元素,而不用编写自己的for循环。
document.querySelectorAll('*').forEach(function(node) {
// Do whatever you want with the node object.
});
性能说明-尽最大可能使用特定的选择器来确定要查找的内容。通用选择器可以根据页面的复杂性返回很多节点。另外,在您不关心儿童时,也可以考虑使用
document.body.querySelectorAll
代替。document.querySelectorAll
<head>
在寻找相同的东西。好吧,不完全是。我只想列出所有DOM节点。
var currentNode,
ni = document.createNodeIterator(document.documentElement, NodeFilter.SHOW_ELEMENT);
while(currentNode = ni.nextNode()) {
console.log(currentNode.nodeName);
}
要获得具有特定类的元素,我们可以使用过滤器功能。
var currentNode,
ni = document.createNodeIterator(
document.documentElement,
NodeFilter.SHOW_ELEMENT,
function(node){
return node.classList.contains('toggleable') ? NodeFilter.FILTER_ACCEPT : NodeFilter.FILTER_REJECT;
}
);
while(currentNode = ni.nextNode()) {
console.log(currentNode.nodeName);
}
在MDN上找到解决方案
一如既往,最好的解决方案是使用递归:
loop(document);
function loop(node){
// do some thing with the node here
var nodes = node.childNodes;
for (var i = 0; i <nodes.length; i++){
if(!nodes[i]){
continue;
}
if(nodes[i].childNodes.length > 0){
loop(nodes[i]);
}
}
}
与其他建议不同,此解决方案不需要您为所有节点创建一个数组,因此它在内存上的作用更大。更重要的是,它可以找到更多结果。我不确定这些结果是什么,但是在chrome上进行测试时,发现与document.getElementsByTagName("*");
这是有关如何循环浏览文档或元素的另一个示例:
function getNodeList(elem){
var l=new Array(elem),c=1,ret=new Array();
//This first loop will loop until the count var is stable//
for(var r=0;r<c;r++){
//This loop will loop thru the child element list//
for(var z=0;z<l[r].childNodes.length;z++){
//Push the element to the return array.
ret.push(l[r].childNodes[z]);
if(l[r].childNodes[z].childNodes[0]){
l.push(l[r].childNodes[z]);c++;
}//IF
}//FOR
}//FOR
return ret;
}
对于那些正在使用Jquery的人
$("*").each(function(i,e){console.log(i+' '+e)});
安迪(Andy E.)给出了很好的答案。
我要补充一点,如果您想在某个特殊的选择器中选择所有子项(这种需求最近发生在我身上),则可以在任何所需的DOM对象上应用方法“ getElementsByTagName()”。
例如,我只需要解析网页的“视觉”部分,所以我做了这个
var visualDomElts = document.body.getElementsByTagName('*');
这永远不会考虑头部。
从此链接
javascript参考
<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
function findhead1()
{
var tag, tags;
// or you can use var allElem=document.all; and loop on it
tags = "The tags in the page are:"
for(i = 0; i < document.all.length; i++)
{
tag = document.all(i).tagName;
tags = tags + "\r" + tag;
}
document.write(tags);
}
// -->
</script>
</head>
<body onload="findhead1()">
<h1>Heading One</h1>
</body>
</html>
更新:编辑
自上次回答以来,我发现了更好的简单解决方案
function search(tableEvent)
{
clearResults()
document.getElementById('loading').style.display = 'block';
var params = 'formAction=SearchStocks';
var elemArray = document.mainForm.elements;
for (var i = 0; i < elemArray.length;i++)
{
var element = elemArray[i];
var elementName= element.name;
if(elementName=='formAction')
continue;
params += '&' + elementName+'='+ encodeURIComponent(element.value);
}
params += '&tableEvent=' + tableEvent;
createXmlHttpObject();
sendRequestPost(http_request,'Controller',false,params);
prepareUpdateTableContents();//function js to handle the response out of scope for this question
}
用 *
var allElem = document.getElementsByTagName("*");
for (var i = 0; i < allElem.length; i++) {
// Do something with all element here
}
我认为这真的很快
document.querySelectorAll('body,body *').forEach(function(e) {
var all = document.getElementsByTagName("*"); for (var i=0, max=all.length; i < max; i++);
如果需要检查每个元素,则可以使用所有元素,但会导致检查或循环重复的元素或文本。
下面是一个递归实现,该实现只检查或循环所有DOM元素的每个元素一次并追加:
(@George Reith的递归答案来自此:将 HTML映射到JSON)
function mapDOMCheck(html_string, json) {
treeObject = {}
dom = new jsdom.JSDOM(html_string) // use jsdom because DOMParser does not provide client-side Window for element access
document = dom.window.document
element = document.querySelector('html')
// Recurse and loop through DOM elements only once
function treeHTML(element, object) {
var nodeList = element.childNodes;
if (nodeList != null) {
if (nodeList.length) {
object[element.nodeName] = []; // IMPT: empty [] array for parent node to push non-text recursivable elements (see below)
for (var i = 0; i < nodeList.length; i++) {
console.log("nodeName", nodeList[i].nodeName);
if (nodeList[i].nodeType == 3) { // if child node is **final base-case** text node
console.log("nodeValue", nodeList[i].nodeValue);
} else { // else
object[element.nodeName].push({}); // push {} into empty [] array where {} for recursivable elements
treeHTML(nodeList[i], object[element.nodeName][object[element.nodeName].length - 1]);
}
}
}
}
}
treeHTML(element, treeObject);
}
您可以尝试
document.getElementsByClassName('special_class');
文章标签:dom , javascript
版权声明:本文为原创文章,版权归 javascript 所有,欢迎分享本文,转载请保留出处!
评论已关闭!