我在我的网站上使用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>