Home  >  Article  >  Web Front-end  >  js get child node function (compatible with FF and IE)_form effects

js get child node function (compatible with FF and IE)_form effects

WBOY
WBOYOriginal
2016-05-16 18:29:201130browse
复制代码 代码如下:

function getFirstChild(obj) {
var result = obj.firstChild;
while (!result.tagName) {
result = result.nextSibling;
}
return result;
}

function getNextChild(obj) {
var result = obj.nextSibling;
while (!result.tagName) {
result = result.nextSibling;
}
return result;
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn