mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
21 lines
444 B
HTML
21 lines
444 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var a = document.createElement("select");
|
||
|
|
var f = document.createElement("optgroup");
|
||
|
|
var g = document.createElement("optgroup");
|
||
|
|
a.appendChild(f);
|
||
|
|
g.appendChild(document.createElement("option"));
|
||
|
|
f.appendChild(g);
|
||
|
|
a.appendChild(document.createElement("option"));
|
||
|
|
document.body.appendChild(a);
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="boom();"></body>
|
||
|
|
</html>
|