我正在思考为什么我不能让它工作。我正在使用 jQuery Capty 插件。
在 prestashop 中,我在product-list.tpl
.
包括在顶部的这个product-list.tpl
:
<script type="text/javascript">
$('#animation').capty({
animation: 'fade',
speed: 400
});
</script>
这也在a href 内的图像文件中。
<img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')}" class="img-responsive" id="animation" alt="{$product.name|escape:'htmlall':'UTF-8'}" {if isset($homeSize)} width="{$homeSize.width}" height="{$homeSize.height}"{/if} />
我得到的错误是:
选择器无效或丢失!
我似乎无法让它工作。有什么建议么。我相信我正在按照说明进行操作,但这就是我必须遗漏的地方。