jQuery - 如何为childNode.length,nextSibling和childNode.nodeType编写if promt检查

时间:2013-04-02 12:41:17

标签: javascript jquery if-statement

我需要一些很好的示例,说明如何编写if语句,检查所有div's指定数量的childNodes.lenght和childNode.nodeType。

除了100%确定我得到了正确的<div>,它的右边节点也检查了下一个兄弟。

我对jQuery / javascript很新,所以我可能会在语法上挣扎,但这是我到目前为止所做的:

var specifiedChildNodesLength = ...

var specifiedChildNodesType = ...

if( $('div').childNodes.length == specifiedChildNodesLength && $('div').childNodes.nodeType == specifiedChildNodesType) { do something }

1 个答案:

答案 0 :(得分:0)

试试这个:

if (($('div').children().length == specifiedChildNodesLength) && ($('div').children().get(0).nodeType == specifiedChildNodesType)) {}