我正在尝试关闭Fancybox实例时更新我网站的购物车。我正在使用Fancybox 1.3.4。假设我的功能有效,那么以下工作不应该起作用吗?
<script type="text/javascript">
$(function () {
$("a.ProductRollover").fancybox({
'padding':0,
'width': 785,
'height': 554,
'autoScale': false,
'type': 'iframe',
'onClosed': function() {
$('#cart_total').html(json['total']);
}
});
});
</script>
谢谢。
答案 0 :(得分:3)
而不是使用onClosed使用beforeClose或afterClose。在此处{@ 3}}的“回调”标签下找到API文档。
此外,http://fancyapps.com/fancybox/#docs对此处Mottie的回答可能会有所帮助。