我想禁用 Fancybox 中的右键单击,我尝试将此处(和其他地方)发布的解决方案集成到我的 Fancybox 代码中,但没有成功。
我的代码:
<script type="text/javascript">
$(document).ready(function() {
$("#fancybox-manual-a").click(function() {
$.fancybox.open([
{
href : 'images/img1.jpg',
title : 'Title 1'
}, {
href : 'images/img2.jpg',
title : 'Title 2'
}, {
href : 'images/img3.jpg',
title: 'Title 3'
}
], {
helpers : {
title : {
type : 'over'
}
}
});
});
});
</script>
通过多个来源建议的代码片段如下:
$(".fancybox")
.attr('rel', 'gallery')
.fancybox({
beforeShow: function () {
/* Disable right click */
$.fancybox.wrap.bind("contextmenu", function (e) {
return false;
});
}
});
不幸的是,我的 Fancybox 应用程序与我在其他地方看到的内容略有不同,我无法成功地将这个代码片段集成到我的代码中。有什么建议么?
提前感谢您的建议。