使用Ajax调用填充html列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Ajax调用填充html列表相关的知识,希望对你有一定的参考价值。
// Get the json from the controller function GetListItems() { $.ajax({ type: "POST", url: "/JsonService/GetItems", contentType: "application/json; charset=utf-8", data: "{}", dataType: "json", success: function (result) { DisplayListItems(result); }, "error": function (result) { var response = result.responseText; alert('Error loading: ' + response); } }); } // Create list items and append them inside <ul> element function DisplayListItems(list) { $.each(list, function(index, element) { "<div>", "<div>", element.Title, "</div>", "<div>", element.Description, "</div>", "</div>", "</li>"].join(' '); $(".list > ul").append(itemHTML); } } // Controller method that serves json data public JsonResult GetItems() { IQueryable<Item> itemList = new DAO().GetList(); return Json(from e in itemList select new { Title = e.Title, Description = e.Description }); }
以上是关于使用Ajax调用填充html列表的主要内容,如果未能解决你的问题,请参考以下文章
如何通过 ajax 使用数据库数据填充 ASP.NET MVC 4 下拉列表
Select2 - Ajax 数据 - 根据查询填充下拉列表