美国
中国
function test(o) {
var index = o.selectedindex;
var text = o.options[index].text;
document.getelementbyid(“fax”).value = text;
}
function addvalue()
{
document.all.aaa.options[document.all.aaa.options.length]=new option(‘aaaaa’,’vvv’)
}
网页特效给下拉框select 赋值
美国
中国
function test(o) {
var index = o.selectedindex;
var text = o.options[index].text;
document.getelementbyid(“fax”).value = text;
}
function addvalue()
{
document.all.aaa.options[document.all.aaa.options.length]=new option(‘aaaaa’,’vvv’)
}
update8.com
www.update8.com
经济风暴
//方法三
//创建一个option
var ooption = document.createelement(“option”);
//将option添加到城市选择框中
document.getelementbyid(“sp”).options.add(ooption);
document.getelementbyid(“sp”).options[0].selected=true;
//为option赋值
ooption.innertext =p[sp.value][i];
ooption.value =p[sp.value][i];