如何在锚标签内选择 div 标签。考虑以下 HTML。
<a target="_new" href="https://stackoverflow.com/12.mp4"
data-placement="top" rel="tooltip"
title="Video (MP4)" >
<div class="hidden">Interesting 12</div>
</a>
我必须选择所有指向视频资源的锚标签。我可以选择锚标签。现在如何选择其中的分区并获取文本?
$("a").each(function() {
var link = $(this).attr('href');
if (typeof link == "string" && link.indexOf(".mp4") > 0) {
alert(link);
}
})