如何在单击事件上使用 jQuery、Waypoints 扩展?

发布于 2024-11-27 12:42:53 字数 238 浏览 0 评论 0原文

我正在此处阅读文档:jQuery、Waypoints、插件文档

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

$.waypoints('refresh')

如何做到这一点?

I'm reading the documentation here: jQuery, Waypoints, plugin docs.

And I'd like to refresh the waypoints using this jQuery object extension on a click event:

$.waypoints('refresh')

How do you do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

随波逐流 2024-12-04 12:42:53

点击事件是什么?

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

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

然后您将像这样激活它:

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

Click-event on what?

Suppose you add a button to the page:

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

Then you'd activate it like so:

$("#$refreshWaypointsBtn").click ( function () {
    $.waypoints ('refresh');
} );
忆悲凉 2024-12-04 12:42:53
$('#$refreshWaypointsBtn').on('click', function() {
     Waypoint.refreshAll();
});     
$('#$refreshWaypointsBtn').on('click', function() {
     Waypoint.refreshAll();
});     
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文