我是 Mojolicious 的新手,要在 ap 标签中找到带有类模块的链接的标题,例如
<p class="Module"><a class="story" href="http://intranet/blah" >Link Text is here</a></p>
我使用以下代码:
my $dom = Mojo::DOM->new( $page );
for my $elm ( $dom->find('p.Module > a.story')->each ){
print $elm->text ."\n";
}
相当粗糙,但它的功能。我现在还想不通(对我来说可能太晚了)是如何返回 href 和链接文本。请让我摆脱痛苦。