1. オプションを挿入します
1. DOM メソッド
var oSelectyear = document.getElementById("Select Year");
var op = document.createElement("option"); op.innerHTML = "2010";
op.value = "2010";
2. 新しいオプション メソッド
var oSelectMonth = document.getElementById( "SelectMonth");
oSelectMonth.options.add(新しいオプション(1, 1));
2. オプションをクリアします
var oSelectMonth = document.getElementById("SelectMonth"); oSelectMonth.options.length = 0; //Select のオプションをクリアします
3 ,デフォルトの選択されたオプションを設定します
var oSelectMonth = document.getElementById("SelectMonth"); //oSelectMonth.selectedIndex = 1; //方法 1: 2 番目の項目がデフォルトで選択されます/ /setTimeout (function() { oSelectMonth.selectedIndex = 1; }, 0); //DOM レンダリングの問題を防ぐために setTimeout 遅延を使用します
// oSelectMonth.options[1].selected = true; > oSelectMonth.options[1].setAttribute("selected", "true"); //方法 3: setAttribute を使用して設定することをお勧めします