getNextElement DOM函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getNextElement DOM函数相关的知识,希望对你有一定的参考价值。
Useful function for CSS DOM, returns the next element after the selected node. So you could style the element directly after a h1 element for example.
function getNextElement(node) { if(node.nodeType == 1){ return node; } if(node.nextSibling) { return getNextElement(node.nextSibling) } return null; }
以上是关于getNextElement DOM函数的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript getNextElement函数的用法
jquery 对象的 heightinnerHeightouterHeight 的区别以及DOM 元素的 clientHeightoffsetHeightscrollHeightoffset(代码片段