然而,我正试图将案文从直接高于链接的跨段内容中删除。
$(this).closest("span").text()
正式法典:
<>JS
$boxes.find( .portlet-header .portlet-maximize ).click(function() {
// returns the rel of the link fine
var widHtml = $(this).attr( rel );
// get text from span above link (not working)
var widTitle = $(this).closest("span").text()
});
<><><><>>><>>>>><>>>>>>
<div class="portlet-header">
<span class="widTitle gmIcon">text I want to get</span>
<a rel="widgets/dashboard/max/goal-mouth" class="portlet-maximize"></a>
</div>