function Add() {
var sel1=document.myform.d_b1;//被选择select
var sel2=document.myform.d_b2;//选择到的select
if (sel1.selectedIndex<0) {
alert("请选择一个待选按钮!");
return;
}
sel2.options[sel2.length]=new Option(sel1.options[sel1.selectedIndex].innerHTML,sel1.options[sel1.selectedIndex].value);
}
按钮时间onclick=add()