使用minidom获取元素的所有属性

时间:2012-06-11 16:10:15

标签: python xml minidom

我想获得一个元素的所有属性(不知道属性的名称)。那有什么功能吗? 感谢

1 个答案:

答案 0 :(得分:8)

>>> docu = '<a href="http" alt=":)"></a>'
>>> dom = xml.dom.minidom.parseString(docu)
>>> a = dom.getElementsByTagName("a")[0]
>>> a.attributes.items()
[(u'alt', u':)'), (u'href', u'http')]