Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
创建元素:
ele = doc.createElement("ele") ele.attributes['var']= 'yes' ele.attributes['ret']= 'no' main.appendChild(ele)
但结果具有混合属性(可能是字母):
<function ret="no" var="yes"/>
有什么方法可以保持最小属性的创建顺序?
不,属性存储在字典中,并且不保留顺序。无论如何,这无关紧要,因为 XML 中属性的顺序没有语义意义。
如果出于某种原因需要属性,则可以使用pxdom代替。
有关的