js遍历一个元素下的所有img标签,并取得src

2019-04-15 15:32发布

$("div[class=popup_text] img").each(function() {  
        var src=$(this).attr("src");
     
 });