Fullpage.js: 根据当前部分更改页面标题

Fullpage.js: Change page title based on current section

正如这个 post 的标题所说,如何根据 Fullpage.js?

中的当前部分更改页面标题

Fullpage.js 有一个事件 onLeave。

 onLeave: function(index, nextIndex, direction){ 
     switch(nextIndex) {
         case 1:
             document.title = "Index";
             break;
         //etc
     }
 },

也许这样就可以了