JavaScriptでHTMLのselectタグを操作します.
999 ワード
簡単です.コードは以下の通りです.
追加:
すべて削除:
単一のOption要素を削除:
値を取る:
追加:
function selectChange()
{
var sel=document.getElementById("select1");
Option option = new Option("Text","Value");
sel.add(option);
}
すべて削除:
document.getElementById("select1").options.length=0;
単一のOption要素を削除:
var sel=document.getElementById("select1");
for(i=0;i<sel.options.length;i++)
{
if(sel.options[i].selected)
{
sel.options[i]=null; // null
}
}
値を取る:
var sel=document.getElementById("select1"):
var val=sel.options[sel.selectedIndex].value
alert(val); // Option value
var txt=sel.options[sel.selectedIndex].text
alert(txt); // Option ( Text)