我如何將屬性添加到「testTwo」標籤? 的Javascript小白..子節點的設置屬性
var XML = document.createElement("test");
var Node = document.createElement("testOne");
Node.setAttribute("id", "0");
Node.setAttribute("random", "0");
Node.appendChild(document.createElement("testTwo"));
XML.appendChild(Node);
console.log(XML.innerHTML);
***絕對***與'testOne'相同。 – VisioN
怎麼樣? Node.appendChild(document.createElement(「testTow」)。setAttribute(「」,「」)?我試過這不起作用...或者你的意思是Node.setAttribute但創建testTwo後? – BigBug
你試過我的答案? –