﻿// JScript 文件

 //小类------------------------------
            function DL1_Result() 
            { 　　
                var DropDownList1=document.getElementById("DropDownList1");
                if(DropDownList1.value!=0)
				{
				AjaxMethod.DropDownList2(DropDownList1.value,get_city_Result_CallBack);
				}
				else
				{
				 document.all("DropDownList2").length=0;
                 document.getElementById("DropDownList2").options.add(new Option("----请选择详细职位----",0));
                 document.getElementById("DropDownList2").disabled="disabled";
				}
            }
            
            function get_city_Result_CallBack(response)
            {
                if (response.value != null)
                {                    
                   // alert(response.value);
                    document.all("DropDownList2").length=0;
					document.getElementById("DropDownList2").options.add(new Option("加载中...",0));
					document.getElementById("DropDownList2").disabled="disabled";
　　　　             var ds = response.value;
                    if(ds != null && typeof(ds) == "object" && ds.Tables != null)
                    {   document.getElementById("DropDownList2").disabled="";
					    document.all("DropDownList2").length=0;
                        document.getElementById("DropDownList2").options.add(new Option("---------不限---------",0));
                        for(var i=0; i<ds.Tables[0].Rows.length; i++)
　　　　                {
　　　　                    var name=ds.Tables[0].Rows[i].typename;//
　　　　　　                var id=ds.Tables[0].Rows[i].id;
　　　　　　                document.all("DropDownList2").options.add(new Option(name,id));
　　　　                }
                    }
                }                
                return
            }
           