0

由于性能优化,我想防止用户重新加载他们已经加载过一次的 fancybox。这是我的代码:

        $(document).ready(function() {
            $(".fancybox-effects").fancybox({
                type       : 'ajax',
                wrapCSS    : 'fancybox-custom'
            });
        });

添加这个:

            $.ajaxSetup({ cache: true });

对 document.ready 函数没有帮助。有任何想法吗?

4

1 回答 1

3

你可以试试

$(document).ready(function() {
    $(".fancybox-effects").fancybox({
        type       : 'ajax',
        ajax       : { cache: true },
        wrapCSS    : 'fancybox-custom'
    });
});
于 2013-07-12T18:04:31.987 回答