下拉菜单级联(1)

本文介绍了一种使用HTML和JavaScript实现下拉菜单及级联菜单的方法。通过动态生成选项,用户可以在选择主菜单项后看到相应的子菜单内容变化。这种交互方式常见于网页表单中。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

下拉菜单和级联菜单
<HTML>
    
<HEAD>
        
<TITLE>New Document</TITLE>
        
<META NAME="Generator" CONTENT="EditPlus">
        
<META NAME="Author" CONTENT="">
        
<META NAME="Keywords" CONTENT="">
        
<META NAME="Description" CONTENT="">
        
<style type="text/css">
body
{font-family:Courier New, Courier}
select
{font-size:8pt;font-family:Courier New, Courier}
input
{font-size:8pt;font-family:Courier New, Courier}
</style>
        
<SCRIPT LANGUAGE="JavaScript">
<!--
var Name=new Array(3);
var Value=new Array(3);
Name[
1]=new Array("Zosatapo1","Zosatapo2","Zosatapo3","Zosatapo4");
Name[
2]=new Array("Reic Yang1","Reic Yang2","Reic Yang3","Reic Yang4");
function change()
{
selIndex
=document.all("test").selectedIndex;
if(document.all("test").selectedIndex==0)
 
return;

for(i=document.all("test").options.length-1;i>-1;i--)
{
 document.all(
"test").options.remove(i);
}


 

for(i=0;i<Name[selIndex].length;i++)
{
document.all(
"test").options.add(new Option(Name[selIndex][i],"name"+i));
}


}


function changeEx(){


for(i=document.all("sub").options.length;i>0;i--)
{
document.all(
"sub").options.remove(i-1);
}



if(document.all("main").selectedIndex==0){
document.all(
"sub").options.add(new Option("==========","-1"));
return;}



selIndex
=document.all("main").selectedIndex;

for(i=0;i<Name[selIndex].length;i++)
{
document.all(
"sub").options.add(new Option(Name[selIndex][i],"name"+i));
}


}


function reset(){
for(i=document.all("test").options.length-1;i>-1;i--)
{
 document.all(
"test").options.remove(i);
}


document.all(
"test").options.add(new Option("==========","-1"));

document.all(
"test").options.add(new Option("Zosatapo","1"));

document.all(
"test").options.add(new Option("Reic Yang","2"));

}


function display(object){
alert(object.options[object.selectedIndex].text
+" "+object.options[object.selectedIndex].value);
}

//-->
</SCRIPT>
    
</HEAD>

    
<BODY BGCOLOR="#FFFFFF">
        First Sample:
        
<br>
        
<font color="blue">All items will change After you Selected!</font>
        
<br>
        
<SELECT id="test" onchange="change();">
            
<option value="-1" selected>
                ==========
            
<option value="1">
                Zosatapo
            
<option value="2">
                Reic Yang
        
</SELECT>
        
<input name="Reset Select" type="button" value="Reset Select" onClick="reset();">
        
<br>
        
<br>

        Second Sample:
        
<br>
        
<font color="blue">You selected Item in Main Select will change the Sub select Content!</font>
        
<br>
        Main Select:
        
<SELECT id="main" onchange="changeEx();">
            
<option value="-1" selected>
                ==========
            
<option value="1">
                Zosatapo
            
<option value="2">
                Reic Yang
        
</SELECT>

        Sub Select:
        
<SELECT id="sub" onChange="display(this);">
            
<option value="-1" selected>
                ==========
        
</SELECT>
        
<br>
        
<br>
    
</BODY>
</HTML>
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值