在wordpress网站中,我使用了响应式灯箱插件。单击图像后,将打开标识为fullResImage
的弹出框。我想添加Pinch Zoomer的功能。我应该为此绑定一个函数,还是有任何文档更改函数。
以下代码不起作用。
jQuery(document).ready(function($) {
$( "img#fullResImage" ).pinchzoomer();
});
任何帮助?
答案 0 :(得分:0)
尝试将$( "img#fullResImage" ).pinchzoomer();
更改为jQuery( "img#fullResImage" ).pinchzoomer();
Wordpress不支持" $"并且必须始终用" jQuery"。
替换