我在我的项目中使用pjax。在使用它之前,一切都还好。但是在使用pjax之后,方法将不起作用,只有在 mount 属性中调用的方法才能很好地工作。我的pjax选项是:
$(document).pjax('.tab-link',{container: '#pjax-container', timeout: 5000});
$(document).on('pjax:error', function (event, xhr, textStatus, errorThrown, options) {
options.success(xhr.responseText, textStatus, xhr);
return false;
});
我该怎么办?