jsプルダウンリストの追加と削除オプションを実現します.
1424 ワード
JaneYork
//
//
function add(){
// input
var txt = document.getElementById("txt");
// option
var o = new Option();
// option
o.text = txt.value;
var se = document.getElementById("s1");
// option
se.add(o);
}
//
function remove(){
// select
var se = document.getElementById("s1");
//
se.remove(se.selectedIndex);
}
: