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

ajax实现无刷新省市县三级联动

发布时间:2016-05-11 作者:wangjingjing1014 来源:转载
这篇文章主要为大家详细介绍了ajax实现无刷新省市县三级联动的相关资料,利用三层架构实现,需要的朋友可以参考下

本文实例为大家分享了ajax实现无刷新省市县三级联动的具体代码,供大家参考,具体内容如下

效果图:

实现代码:

1、html:

  1. 用户名
  2. 密码
  3. 确认密码
  4. 邮箱
  5. 地址
  6. <select id="seprovince">
  7. <select id="secity">
  8. <select id="searea">

2、WebService1.asmx

代码
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Services;
  6. namespace 省市县三级联动
  7. {
  8. ///
  9. /// WebService1 的摘要说明
  10. ///
  11. [WebService(Namespace = "http://tempuri.org/")]
  12. [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
  13. [System.ComponentModel.ToolboxItem(false)]
  14. // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。
  15. [System.Web.Script.Services.ScriptService]
  16. public class WebService1 : System.Web.Services.WebService
  17. {
  18. [WebMethod]
  19. public string HelloWorld()
  20. {
  21. return "Hello World";
  22. }
  23. [WebMethod]
  24. public List GetProvince()
  25. {
  26. BLL.province bpro = new BLL.province();
  27. List list = bpro.GetListModel();
  28. return list;
  29. }
  30. [WebMethod]
  31. public List GetCItyByPro(string proid)
  32. {
  33. BLL.city bcity = new BLL.city();
  34. List list = bcity.GetListModel("father='" + proid + "'");
  35. return list;
  36. }
  37. [WebMethod]
  38. public List GetAreaByCity(string cityid)
  39. {
  40. BLL.area barea = new BLL.area();
  41. List list = barea.GetListModel("father='" + cityid + "'");
  42. return list;
  43. }
  44. }
  45. }

在三层的Bll层中的city.cs和area.cs中分别添加以下属性

代码
  1. //city.cs:
  2. public List GetListModel(string strsql)
  3. {
  4. return dal.GetListModel(strsql);
  5. }
  6. //area.cs:
  7. public List GetListModel(string strsql)
  8. {
  9. return dal.GetListModel(strsql);
  10. }

在三层的DAL层中的city.cs和area.cs中分别添加以下方法

代码
  1. //city.cs:
  2. public System.Collections.Generic.List GetListModel(string strsql)
  3. {
  4. System.Collections.Generic.List list = new System.Collections.Generic.List();
  5. DataTable dt = GetList(strsql).Tables[0];
  6. foreach (DataRow row in dt.Rows)
  7. {
  8. Model.city mcity = new Model.city();
  9. mcity.id = Convert.ToInt32(row["id"]);
  10. mcity.cityID = row["cityID"].ToString();
  11. mcity.cityname = row["cityname"].ToString();
  12. list.Add(mcity);
  13. }
  14. return list;
  15. }
  16. //area.cs:
  17. public System.Collections.Generic.List GetListModel(string strsql)
  18. {
  19. DataTable dt = GetList(strsql).Tables[0];
  20. System.Collections.Generic.List list = new System.Collections.Generic.List();
  21. foreach (DataRow row in dt.Rows)
  22. {
  23. Model.area marea = new Model.area()
  24. {
  25. id = Convert.ToInt32(row["id"]),
  26. areaID = row["areaID"].ToString(),
  27. areaname = row["areaname"].ToString()
  28. };
  29. list.Add(marea);
  30. }
  31. return list;
  32. }

以上就是本文的全部内容,希望对大家的学习有所帮助。

相关推荐