我正在使用 shopify 网站进行自定义放大弹出窗口。在我的header.liquid文件中,我正在调用放大弹出内容。
<button id="open-popup" >Open popup</button>
<div id="my-popup" class="mfp-hide">
popup content here.
</div>
在这里,我在theme.js.liquid中添加了脚本
$('#open-popup').magnificPopup({
items: [
{
src: '#my-popup',
type: 'inline'
}
],
gallery: {
enabled: true
},
type: 'image'
});
但它显示以下错误
TypeError: $(...).magnificPopup is not a function
如果有人请告诉我我是否想念js库文件之类的东西。
提前致谢。