我正在尝试从文件夹中读取图像列表以创建具有图像背景的 DIV(用作图像滑块)。我写的jQuery如下:
$.getJSON('../functions.php', function(images) {
images.each( function() {
$('#main').prepend('<div class="slider" style="background-image:url(' + ' (this) + ');"></div>');
});
});
不幸的是,这不起作用...我在控制台中收到的错误消息是:
Uncaught SyntaxError: Unexpected token ILLEGAL
我究竟做错了什么?谢谢!