我建议使用一些普通的 JavaScript(尽管结合 jQuery 对相关节点/元素进行迭代)。以下内容未经测试,但我认为明白了这一点:
function firstChildIs(el) {
if (!el) {
return false;
}
else {
switch (el.firstChild.nodeType) {
case 1:
return 'Element is an element';
break;
case 2:
return 'Element is an attribute node';
break;
case 3:
return 'Element is a textNode';
break;
case 4:
return 'Element is a CDATA section node';
break;
case 5:
return 'Entity reference node';
break;
case 6:
return 'entity node';
break;
case 7:
return 'processing instruction node';
break;
case 8:
return 'comment node';
break;
case 9:
return 'document node';
break;
case 10:
return 'document type node';
break;
case 11:
return 'document fragment node';
break;
case 12:
return 'document notation node';
break;
default:
return 'Something horrible has probably happened...';
break;
}
}
}
并致电:
$(elementSelector).each(
function(){
console.log(firstChildIs(this));
});
编辑是因为我认为使用数组可能比使用开关更容易:
function firstChildIs(el) {
if (!el) {
return false;
}
else {
var nodetypes = ['element', 'attribute', 'text',
'CDATA section', 'entity reference',
'entity', 'processing instruction',
'comment', 'document', 'document type',
'document fragment', 'document notation'];
return nodetypes[el.firstChild.nodeType - 1] || 'something really unexpected happened';
}
}
以与前面说明的相同方式调用,如果要添加单词“node”,请记住将其添加到函数返回的值中。
还值得记住的是,一些(尽管我不认为全部)浏览器确实将打开标签之间的空白(换行符和制表符)报告为文本节点,因此您完全有可能必须修剪白色-space 在评估 的firstChild
节点类型之前。
参考: