我正在尝试用我的 PHP 页面实现 jQuery 实时缩略图。在页面上,我正在检索事件信息以及以逗号分隔的缩略图值列表。该插件的工作方式与此略有不同,我很难调整我的脚本来工作。该插件位于http://tutorialzine.com/2012/12/album-photo-previews-jquery/。在他们的示例中,他们使用数组,而我有一个逗号分隔的缩略图列表。我到目前为止的代码在这里......
<?php foreach ($events as $event) { ?>
<div class="left13 section_home" style="margin-bottom:25px;">
<h2><?php echo $event['event_title']; ?></h2>
<div align="center">
<?php foreach ($event['thumbnails'] as $thumbnail) { ?>
<a href="#" data-images="<?php echo str_replace(',', '|', $event['thumbnails']); ?>" class="album">
<img src="<?php echo ($event['thumbnails'] != '') ? base_url() . 'media/photos/thumbnail/' . $event['thumbnails'] : base_url() . 'images/no_photo_thumbnail.png'; ?>" alt="" title="" /><span class="preloader"></span></a>
<p><?php echo ($event['event_description'] != '') ? substr($event['event_description'], 0, 200) : 'No description yet...'; ?></p>
<a href="<?php echo base_url(); ?>profile/events/view/<?php echo $event['event_id']; ?>" class="section_more"><span class="swirl_left"><span class="swirl_right">View This Event</span></span></a>
<?php } ?>
</div>
</div>
<?php } ?>
我如何能够通过使用逗号分隔的缩略图值列表而不是教程中使用的数组来使这个脚本工作?谢谢!