我試圖在特定div內找到類名爲component ui-draggable dropped
的div的數量。獲取div標記中具有相同類的元素的數量
下面是相應的HTML代碼:
<div id="tabs-1" aria-expanded="true" aria-hidden="false">
<div class="drag-drop-box ui-droppable">
<div class="component ui-draggable dropped">
<div class="product-view" >
<a href="#"><span>C</span> us-east-1c</a>
</div>
</div><div class="component ui-draggable dropped">
<div class="product-view">
<a href="#"><span class="img-product">
<img alt="" src="img/product_item/1.png"></span> image-11</a>
</div>
</div>
</div>
</div>
這是各自的jQuery代碼:
var getid = $('div[aria-hidden="false"]').attr('id');
var clone_nums = $('#'+getid + '> div ').find('.component ui-draggable dropped').length;
alert(clone_nums
但警報總是彈出式爲零。任何人都可以指導我這裏有什麼問題嗎?由於
出了什麼問題'$('DIV [ARIA隱藏= 「假」] .component。 UI-draggable.dropped')'? – canon