1228876.html (444B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var a = document.createElement("select"); 9 var f = document.createElement("optgroup"); 10 var g = document.createElement("optgroup"); 11 a.appendChild(f); 12 g.appendChild(document.createElement("option")); 13 f.appendChild(g); 14 a.appendChild(document.createElement("option")); 15 document.body.appendChild(a); 16 } 17 18 </script> 19 </head> 20 <body onload="boom();"></body> 21 </html>