本文介绍了计数具有相同ID JQUERY的div元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用相同的ID创建了多个 DIV 。我想使用 JQUERY 跟踪 DIV 的数量。这个似乎不工作。

I created a more than one DIV with the same ID. I want to keep track of the number of DIV's by using JQUERY. This one does not seem to work.

var divid = "123456";
var count_id_len = $("#parentdiv").find("#"+divid).length;
console.log(count_id_len);

结果总是 1 ,即使有多个。

The result is always 1 even though there is more than one of them.

推荐答案

给div类名并粘贴以下代码..
它会给出计数。 >

Give class name for div and paste the below code..It will give the count.

var conveniancecount = $("div[class*='conveniancecount']").length;

这篇关于计数具有相同ID JQUERY的div元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 00:08