如何使用JQuery获取img内的特定div

前端之家收集整理的这篇文章主要介绍了如何使用JQuery获取img内的特定div前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我必须把所有的图像标签ids在一个特定的div。我如何使用JQuery获得?

解决方法

var arraysOfIds = $('#particularDivId img').map(function(){
                       return this.id;
                   }).get();

// arraysOfIds has now all the id's,access it as arraysOfIds[0],arraysOfIds[1]....
原文链接:https://www.f2er.com/jquery/182652.html

猜你在找的jQuery相关文章