391994-1.html (274B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <script> 5 var sel = document.createElement("select"); 6 sel.appendChild(new Option(1)); 7 var opt = new Option(2); 8 opt.setAttribute("selected", "selected"); 9 sel.appendChild(opt); 10 document.body.appendChild(sel); 11 </script> 12 </body> 13 </html>