如何从 h1 元素中选择最后一个跨度?
<h1>
<a href="#">
<span>Stackoverflow</span>
<span>This is the text what I want to hide</span>
<img src="gif.gif">
</a>
</h1>
我已经尝试过,但没有工作:
$("h1").each(function() {
$(this).last("span").hide();
});