我有一個span標籤,並且包含n個span標籤..我可以使用jquery獲得父跨度中可用的span標籤的數量。如何找到使用jQuery元素的數量
例如:
<span class="x">
<span id="1">one</span>
<span id="2">two</span>
<span id="3">three</span>
</span>
現在我應該找到父跨度內span標籤的數量的計數和我的輸出根據上述情況是3。
請幫助我..
我有一個span標籤,並且包含n個span標籤..我可以使用jquery獲得父跨度中可用的span標籤的數量。如何找到使用jQuery元素的數量
例如:
<span class="x">
<span id="1">one</span>
<span id="2">two</span>
<span id="3">three</span>
</span>
現在我應該找到父跨度內span標籤的數量的計數和我的輸出根據上述情況是3。
請幫助我..
我的版本:)
$('span.x > span').length
從documentation你可以使用長度或大小()。您可以鏈接jQuery選擇器find來計算內部跨度。例如,
<script>
var n = $(".x").find("span").length;
alert(n);
</script>
$("span.x").children("span").size()
嘗試:
$("#id od 1st span").children("span").size();
我認爲這會幫助你。
你可以用這個例子:
$('#showTotalBarcodeCnt').html($("#barcodeLabelList").find("label").length);
感謝
我比我發佈的版本更喜歡這個。 +1 –