????????
四级联动菜单?????你可以搜索下噻

解决方案 »

  1.   

    只要是根据下拉框的值控制其他几个下拉框
      

  2.   


    <html> 
    <BODY> 
    <form name= "branchForm"  method= "post"> 
        <select  name= "branchLevel"  property= "ilevel"  onChange= "selectdu()"  size= "1"  style= "width:  210px;  height:  20 "  >  
            <option  value= " "/> 
            <option  value=17> 国家 </option> 
            <option  value=18> 省(州) </option> 
            <option  value=19> 地、市、厅 </option> 
            <option  value=20> 院(处) </option> 
        </select>          
                    
        <select  name= "nation"    style= "width:210px;  height:20 "> </select> 
        <select  name= "province"    style= "width:210px;  height:20 "> </select> 
        <select  name= "organizaiton"    style= "width:210px;  height:20 "></select> 
    </form> 
    <script  language= "JavaScript">  
    function selectdu()  
    {  
    var  obj= document.branchForm; 
    var  strSel = obj.branchLevel.options[document.branchForm.branchLevel.selectedIndex].text;  
    alert(strSel);  
    if(strSel=="国家")      
    {        
    obj.nation.disabled  = false;      
    obj.province.disabled  = true;      
    obj.organizaiton.disabled  = true;      
    }      
    else  if(strSel == "省(州)")    
    {      
    obj.nation.disabled  = true;      
    obj.province.disabled  = false;      
    obj.organizaiton.disabled  =true;      
    }  
    else if(strSel=="地、市、厅")  

    obj.nation.disabled = true;      
    obj.province.disabled  = true; 
    obj.organizaiton.disabled = false;      

    else 

    obj.nation.disabled =false;      
    obj.province.disabled =false; 
    obj.organizaiton.disabled=false; 
    }    
    } </script> 
    </BODY> 
    </html> 
      

  3.   

    好象在左下角地址栏有个黄色的感叹号,提示什么"缺少对象"