JQuery全页JS

时间:2016-08-07 10:45:21

标签: jquery fullpage.js

我正在使用PHP的fullpage.js。我有这段代码:

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

    // changeNav(nextIndex);
}}

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

1 个答案:

答案 0 :(得分:1)

这样做:

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') );
}