我正试图用XML文件,但我对如何做到这一点感到困惑不解。 举例来说,下文是我的XML文件。
<document>
<object name="Customer" type="class" x="137" y="63">
<attributes>
</attributes>
<methods>
</methods>
</object>
<object name="Item" type="class" x="539" y="275">
<attributes>
</attributes>
<methods>
</methods>
</object>
<link start="Customer" end="Item" type="generalization" />
</document>
在我看来,需要通过每一件“物体”并制造一个物体:objectArray.push(new uml_Class(name));
。
现在,如何通过每一条<代码>和>;object>,然后将其名称价值插入一个阵列?
一、导 言
alert(documentXML);
var root = documentXML.getElementsByTagName( Object );
It does alert my XML in the documentXML
variable but then firebug tells me the following:
documentXML.getElementsByTagName is not a function
如何通过XML文件反复制造物体?