Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jQuery 在 div 中动态添加图像。
我alert()在成功添加元素之后放了一个。jQuery中有什么方法可以检查元素列表是否已添加到div标签中?
alert()
div
尝试这个 -
$('div img').length;
尝试放置全局变量,然后在该方法中将该值加一。最后你会得到计数。这里不需要 jQuery
$(".selector").each(function(){ var images = $(this).find("img"); });