如何在Click事件中使用jQuery,Waypoints扩展?

时间:2011-08-01 22:54:26

标签: jquery jquery-plugins jquery-waypoints

我正在阅读这里的文档:jQuery, Waypoints, plugin docs

我想在点击事件中使用此jQuery对象扩展刷新航点:

$.waypoints('refresh')

你是怎么做到的?

2 个答案:

答案 0 :(得分:3)

关于什么的点击事件?

假设您向页面添加了一个按钮:

<button id="refreshWaypointsBtn" type="button">Refresh the waypoints.</button>

然后你就像这样激活它:

$("#$refreshWaypointsBtn").click ( function () {
    $.waypoints ('refresh');
} );

答案 1 :(得分:0)

private void setTodos(List<Todo> todos) {
    removeAllComponents();
    this.todos = todos;
    todos.forEach(todo ->{
        addComponent(new TodoLayout(todo, this));
    });
}