我收到以下错误:TypeError: slides[i] is undefined。
这很奇怪,因为它不应该能够访问幻灯片变量吗?
<script>
$('document').ready(function() {
$.ajax({
type: "POST",
url: "getSlides.php",
data: '',
cache: false,
success: function(response)
{
var slides = JSON.parse(response);
for (var i = 0; i < slides.length; i++) {
setTimeout(function() {
if (slides[i].type === 'image') {
$('#slideshow').html('<img src="' + slides[i].image_video + '" />');
}
}, 2000);
}
}
});
});
</script>