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