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
希望它有所帮助。