如何在python中获取锚标签的title属性的文本值?

时间:2017-10-25 09:28:48

标签: python-2.7 scrapy

从下面的代码如何获取标题文本

<td class="col_name" nowrap="nowrap">
<a class="icon" title="refer me">
<img src="https://edu.au/images/icons/silk/vcard.gif" align="top" 
alt="Add to address book">
</a>
Mrs Cal <span class="hl_fcc">B</span>AREN
</td>

即,请使用scrapy在python中引用我?请问任何人都可以回答这个问题吗?我尝试了response.css(&#39; td.col-name a :: attr(text)&#39;)。extract()..但我得到&#34; []&#34;

1 个答案:

答案 0 :(得分:3)

使用CSS:

response.css('td.col_name a::attr(title)').extract_first()

使用XPath:

response.xpath('//td[@class="col_name"]/a/@title').extract_first()