我在我的项目中使用YUI,并使用其pjax实用程序,我需要在我的Pjax调用中添加一些Pjax Events。我这样做:
YUI().use('pjax', function (Y) {
new Y.Pjax({container: '#main_content',
navigate: function(){
alert(1);
},
load: function(){
alert(2);
},
error: function(){
alert(3);
}
});
});
但这些调用不适用于导航,加载或错误事件,我在哪里做错了?任何帮助将不胜感激...谢谢。
答案 0 :(得分:1)
尝试:
var PjaxLoader = new Y.Pjax({container: '#main_content'});
PjaxLoader.on('load', function(e) {
Y.log(e.content.node);
});