JQuery 整页 JS

JQuery Full Page JS

我正在使用 fullpage.js 和 PHP。我有这个代码:

$('#fullpage').fullpage({
anchors: ['homepage', 'aboutmepage'],
menu: '#menu',
onLeave: function(index, nextIndex, direction){
    ALERT anchors[1] here!

    // changeNav(nextIndex);
}}

我需要根据索引提醒锚点内容。我不知道怎么办。我试过 $('anchors')[0] 但没用。 提前致谢。

只需这样做:

onLeave: function(index, nextIndex, direction){
    //anchor of the leaving section
    alert( $(this).attr('data-anchor') );

   //anchor of the destination section
   alert( $('.fp-section').eq(nextIndex - 1 ).attr('data-anchor') );
}