尝试使用scrollify.js在页面的当前部分添加类似“有效”类的内容。
能够获取索引值,但不能获取section id或section class!如何获取当前部分的ID或类。
以下是我试图实现的示例代码。
<section id="first" data-section="first" class="scroll-section"> </section>
before:function(index, sections) {
alert(index);
},
此返回索引值。我正在努力将部分ID 首先。
提前致谢。
答案 0 :(得分:1)
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType,
rootURL: config.rootURL
});
Router.map(function() {
this.resource('tasks', function() {
this.route('new');
this.route('edit', {path: '/edit/:task_id'});
});
this.route('subtasks', {path: '/subtasks/:task_id'}, function() {
this.route('subnew', {path: '/subnew/:task_id'});
this.route('subedit', {path: '/subedit/:subtask_id'});
});
});
export default Router;
答案 1 :(得分:1)
致电$.scrollify.current()
,它会返回当前部分。