jquery 值更改处理程序的历史记录?

发布于 2025-01-03 11:21:10 字数 307 浏览 1 评论 0原文

我正在使用这样的 History jquery 插件:

$.History.bind("anchor", function (state) {...});

我想知道是否有一种方法可以不指定“锚点”,而是在锚点更改时调用函数,无论锚点如何。 因为我使用此锚点名称从名称为锚点名称的文件加载内容。

像这样的:

$.History.onValueChange(function(value){ ... getContent(value); });

谢谢。

I'm using the History jquery plugin like that :

$.History.bind("anchor", function (state) {...});

And I wonder if there is a way to not specify the "anchor" but call a function when the anchor change no matter the anchor.
Because I'm using this anchor name to load content from a file whose name is the name of the anchor.

Something like this :

$.History.onValueChange(function(value){ ... getContent(value); });

Thanks.

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

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

发布评论

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

评论(1

桃酥萝莉 2025-01-10 11:21:10

我已经找到了。根本不需要精确地确定必须绑定哪个“锚点”,如下所示:

$.History.bind(function (state) {...});

其中 state 是我的锚点名称。

I have found it. Simply no need to precise which "anchor" must be bound, like this :

$.History.bind(function (state) {...});

Where state is my anchor name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文