I get this error whether I put the jQuery $.ajax call in a $(document).ready(function() {
or not. This is on a ASP.NET MVC .cshtml file.
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
url: '/api/courses',
success: function(data) {
var list = $('#courses');
for (var i = 0; i < data.length; i++) {
var course = data[i];
list.append('<li id="' + course.id + '">' + course.name + '</li>');
}
}
});
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…