document.createElementNSとsetAttribute
このコード。
var nsURI = "http://www.w3.org/2000/xmlns/";
var d=document.createElementNS(nsURI, 'div');
d.setAttribute('id', 'hoge', 1);
document.getElementById('test1').appendChild(d);
このコード。
var nsURI = "http://www.w3.org/2000/xmlns/";
var d=document.createElementNS(nsURI, 'div');
d.setAttribute('id', 'hoge', 1);
document.getElementById('test1').appendChild(d);
2007, 9月, 土曜日, 22nd