有没有办法在关闭时重置fancybox实例或刷新它的内容?请注意,它从同一页面上的 div 中获取内容。
我希望它在重新打开fancybox时像第一次加载到dom中一样显示内容。
我想这更像是 javascript/jQuery 的东西,而不是 Fancybox 的东西,对吧?
$.fancybox.open({
href: '#popup',
padding: 0,
autoWidth: true,
arrows: false,
closeBtn: false,
scrollOutside: true,
helpers: {
overlay: {
css: {
'background': 'rgba(0, 0, 0, 0.5)'
},
locked: false
}
},
afterClose: function() {
// Reset or refresh here
}
});