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

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

$.waypoints('refresh')


你是怎样做的?

最佳答案

点击事件是什么?

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

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


然后,您可以像这样激活它:

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

关于jquery - 如何在Click事件上使用jQuery Waypoints扩展?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6905426/

10-10 10:48