发布于 2016-11-01 10:24:12 | 216 次阅读 | 评论: 0 | 来源: PHPERZ
支持大部分jQuwey转换方法。这里是一些实例。
用户可以用字符选择器来进行过滤:
>>> d('p').filter('.hello') [<p#hello.hello>]
也可以对单一元素使用 eq 方法:
>>> d('p').eq(0) [<p#hello.hello>]
用户也可以寻找内嵌元素:
>>> d('p').find('a') [<a>, <a>] >>> d('p').eq(1).find('a') [<a>]
>>> d('p').find('a').end() [<p#hello.hello>, <p#test>] >>> d('p').eq(0).end() [<p#hello.hello>, <p#test>] >>> d('p').filter(lambda i: i == 1).end() [<p#hello.hello>, <p#test>]