xpath:获取最后的第二个href链接

时间:2014-12-16 00:11:50

标签: xpath scrapy

我想知道如何从第2位到最后位置获取href链接

这是我的xpath:

date = sel.xpath("//div[@class='date']//ul/li/a/@href").extract()

结果如下:

[u'http://www.job.com/?date=12/15/2014', u'hhttp://www.job.com/?date=12/16/2014', u'http://www.job.com/?date=12/17/2014', u'http://www.job.com/?date=12/18/2014'] 

我不想要第一个http://www.job.com/?date=12/15/2014

我想选择li[2]到最后li 我怎么能这样做?
请指导我 谢谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

date = sel.xpath("//div[@class='date']//ul/li[position() >= 2]/a/@href").extract()