1. select を動的に作成します
var mySelect = document.createElement_x("select");
mySelect.id = "mySelect";
document.body.appendChild(mySelect);
}
//オプションを追加します
text","value")); //これは IE および Firefox と互換性があります
}
4. オプションを削除します
obj.options.remove(index);
}
5. オプションの値を取得します
6. オプション
のテキストを取得します。 var obj=document.getElementByIdx_x('mySelect');varindex=obj.selectedIndex; //シリアル番号、現在選択されているオプションのシリアル番号を取得します
var val = obj.options[index ].テキスト;
7. オプションの変更
var obj=document.getElementByIdx_x('mySelect');varindex=obj.selectedIndex; //シリアル番号、現在選択されているオプションのシリアル番号を取得します
var val = obj.options[index ]=新しいオプション ("新しいテキスト","新しい値");
8. 削除選択