日期:2014-05-16 浏览次数:20356 次
window.onload = function() {
var o1 = document.createElement("option");
o1.value="111";
o1.innerHTML="111";
var o2 = document.createElement("option");
o2.value="222";
o2.innerHTML="222";
var sel = document.getElementById("sel");
sel.appendChild(o1);
sel.appendChild(o2);
}