for l in d.items('nl,de,en'):
if l.tag()=='nl':
dothis()
如何找到与pyquery对象关联的标记?方法标签()中 上面的例子不存在......
答案 0 :(得分:1)
获取标记名称的正确方法是使用is_()
函数。
for l in d.items('nl,de,en'):
if l.is_('nl')
dothis()
来自文档: https://pythonhosted.org/pyquery/modules/pyquery/pyquery.html#PyQuery.is
希望它有所帮助。