欢迎来到福编程网,本站提供各种互联网专业知识!

javascript select 之间传值效果的代码

发布时间:2007-10-18 作者: 来源:转载
二个框内值传递.不错的效果复制代码代码如下:function$(value){returndocument.getElementById(value);}functionch(s){varp=newArray(0,1,2);p[0]='大学';p[1]='高中';p[2]='初中';if(s.value=='0'){$('n2').options.length=0;$('n2').options.ad
二个框内值传递.不错的效果

复制代码 代码如下:

function$(value)
{
returndocument.getElementById(value);
}
functionch(s){
varp=newArray(0,1,2);
p[0]='大学';
p[1]='高中';
p[2]='初中';
if(s.value=='0'){
$('n2').options.length=0;
$('n2').options.add(newOption(p[0],p[0]));
}
if(s.value=='1'){
$('n2').options.length=0;
$('n2').options.add(newOption(p[1],p[1]));
}
if(s.value=='2'){
$('n2').options.length=0;
$('n2').options.add(newOption(p[2],p[2]));
}
}



<selectname="n1"size="10"id="n1"onchange="ch(this)">
大学
高中
初中


<selectname="n2"size="10"id="n2">a



[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

相关推荐