在网上找了好久,都没有找到自己想要的那种效果,最后还是自己写出来了, 虽然方法有点笨. 这是Controller里 public ActionResult Edit(string id) { //查询收货地址信息 var data = AddressDirectoryLogic.GetById(id); //先把省份查出来装到ViewBag 里 var provinces = RegionLogic.GetChinaProvinces(); List<SelectListItem> pItem…