324918-1.xhtml (453B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script> 4 5 6 function init() 7 { 8 var sel = document.getElementById("sel"); 9 var div = document.getElementById("div"); 10 var newo = document.createElementNS("http://www.w3.org/1999/xhtml", "option"); 11 12 sel.appendChild(div); 13 div.appendChild(newo); 14 sel.removeChild(div); 15 } 16 17 </script> 18 </head> 19 <body onload="init();"> 20 21 <div id="div"><option></option></div> 22 23 <select id="sel"></select> 24 25 </body> 26 </html>