7

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

4

1 回答 1

9
>>> 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')]
于 2012-06-11T16:22:01.817 回答