我目前正在使用 pjax,它工作得很好,但我需要运行两个 jQuery 函数,一个在 pjax 加载新 url 之前,一个在加载新 url 之后,我该怎么做?
我尝试了以下两种变体,但似乎都不起作用?
第一次尝试:
$("a").pjax("#main").live('click', function(){
//Function Before Load
// Function After Load
})
第二次尝试:
$("body").on("click", "a", function(){
//Function Before Load
$(this).pjax("#main");
//Function After Load
return false;
});