get_qqvideo_infomation $(".mod_episode a").each(function(){ var address = $(this).attr("href"); var name = $(this).children("span[itemprop='episodeNumber']").text(); // 直系后代才能用children only direct descendants // 参考 http://
$(".mod_episode a").each(function(){ var address = $(this).attr("href"); var name = $(this).children("span[itemprop='episodeNumber']").text(); // 直系后代才能用children only direct descendants // 参考 http://stackmirror.bird.so/page/jy7o1fub7 var mark = $(this).find("img").attr("alt"); console.log(mark,name,address); })