2013-08-18 68 views

回答

0

這裏找到了解決方案的(Python)的cssselect翻譯:

descendant-or-self::*/p[(position() +0) mod 2 = 0 and position() >= 0] 

這可以簡化爲

.//p[position() mod 2 = 0] 

通過LXML .cssselect:

>>> import lxml.cssselect 
>>> lxml.cssselect.CSSSelector('p:nth-of-type(2n)').path 
u'descendant-or-self::*/p[(position() +0) mod 2 = 0 and position() >= 0]' 
>>> 
相關問題