通过后台json产生产生页面下拉列表

  
 public class DropDownListJson : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            if (context.Request["CodeType"] == "EnterpriseType")
            {
                UnitType(context);
            }
        }

        private void UnitType(HttpContext context)
        {
            List list = new T_UnitTypeDAL().GetAll();
            string result=JsonHelper.GetJson>(list);
            context.Response.ContentType = "application/json";
            context.Response.Write(result);
            context.Response.End();
        }
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
  function iniEnterpriseType() {
            $.ajax({
                type: 'GET',
                url: '../../Ajax/DropDownListJson.ashx?CodeType=EnterpriseType',
                dataType: 'json',
                async: false,
                timeout: 2000,
                success: function (data) {
                    for (var i = 0; i < data.length; i++) {
                        $("#AreaSelect").append("");
                    };
                    $("#AreaSelect").append("");
                    //document.getElementById('AreaSelect').value = "a";
                },
                error: function (XMLHttpRequest, textStatus, errorThrown) {
                    alert("获取机构类型数据失败!");
                }
            })
        }
  机构类型:
                




你可能感兴趣的:(html)