AspNetCore.Docs/aspnetcore/includes/add-javascript-jquery/samples/sample4.html

11 lines
379 B
HTML
Raw Normal View History

$(document).ready(function () {
// Send an AJAX request
$.getJSON(apiUrl)
.done(function (data) {
// On success, 'data' contains a list of todos.
$.each(data, function (key, item) {
// Add a list item for the todo.
$('<li>', { text: formatItem(item) }).appendTo($('#todos'));
});
});
});