2014-02-28 85 views

回答

0

您應該使用setAttributeNS()。例如:

element.setAttributeNS(null, 'x', '100'); 
+0

非常感謝,現在我面臨的問題是,當我想向前一行'y1'添加一些數值時,它會給出錯誤。 –

+0

例如,n.children [0] .setAttributeNS(null,'y1',n.children [0] .getAttribute ['y1'] + 78); –

+0

您必須使用字符串值。 String(n.children [0] .setAttributeNS(null,'y1',n.getAttribute ['y1'] + 78) –