for l in d.items('nl,de,en'):
   if l.tag()=='nl':
      dothis()

如何找到与pyquery对象关联的标记?方法tag()在
上面的例子不存在…

最佳答案

获取标记名的正确方法是使用is_()函数。

for l in d.items('nl,de,en'):
   if l.is_('nl')
      dothis()

从文档中:
https://pythonhosted.org/pyquery/modules/pyquery/pyquery.html#PyQuery.is
希望有帮助。

09-27 23:59