我需要一些很好的示例,说明如何编写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 }
答案 0 :(得分:0)
试试这个:
if (($('div').children().length == specifiedChildNodesLength) && ($('div').children().get(0).nodeType == specifiedChildNodesType)) {}