像砌体,Carousel等jquery插件不能在Pjax页面内工作

时间:2015-12-01 06:38:31

标签: php pjax

我在我的网站上使用pjax。某些JQuery插件无法在pjax页面内启动。随着pjax它的工作正常。 这是我的pjax代码。

<script type="text/javascript">
    var direction = "right";
    $(document).ready(function(){
        $(document).pjax('a', '#main');
        $(document).on('pjax:start', function() {
            console.log("pjax started");
            $(this).addClass('loading');
        });
        $(document).on('pjax:end', function() {
            console.log("pjax ended");
            $(this).removeClass('loading');
        });
    });
</script>

0 个答案:

没有答案