jquery live &实时查询
我正在使用 jquery 的 load 通过 ajax 引入缩略图。我希望用户能够将鼠标悬停在裁剪后的拇指上,以使用 imgPreview 插件。如果他们点击它,则会在灯箱中显示全尺寸的图像 (fancybox)。
对于灯箱,我有:
$("ul#plant_gallery li a").livequery( function(){
$(this).fancybox ({ 'overlayOpacity': 0.9, 'overlayColor': '#000', });
});
对于工具提示未裁剪的图像悬停,我有:
$('ul#plant_gallery li a').live('mouseover', function()
{
if (!$(this).data('init'))
{
$(this).data('init', true);
$(this).imgPreview({imgCSS: { width: 200 }, srcAttr: 'rel'})
(
function()
{
},
function()
{
}
);
$(this).trigger('mouseover');
}
});
如何将这两者合二为一?我应该使用 jquery 的 live 还是 livequery?感谢您的帮助!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您不需要将它们组合起来,您是否尝试过:
并保持其他功能不变?
I think you don't NEED to combine them, have you tried:
And leaving the other function as it is?