使用jQuery遍历所有DOM元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery遍历所有DOM元素相关的知识,希望对你有一定的参考价值。
This code will walk all elements from a given selector.
function doStuff(child, type) { if(typeof type !== 'undefined' && type != ""){ /** HERE **/ } } function walk(children){ if (typeof children == "undefined" || children.size() === 0) { return; } var child = $(this); if (child.children().size() > 0) { walk(child.children()); } doStuff(child, this.type); }); } walk($("#ka-registration-vital-information-form .participant"));
以上是关于使用jQuery遍历所有DOM元素的主要内容,如果未能解决你的问题,请参考以下文章
jquery 对象的 heightinnerHeightouterHeight 的区别以及DOM 元素的 clientHeightoffsetHeightscrollHeightoffset(代码片段