PHP mod_rewrite 锚点

发布于 2024-12-03 04:11:09 字数 171 浏览 0 评论 0原文

我有 mod_rewrite 处理我的所有网址。

但我有一些锚链接,例如返回顶部引用#top。

我还有一个带有开始停止按钮的 jquery 滑块。该按钮使用 href="#" 来触发,但这并不是启动或停止滑块,而是重新加载页面。因此,滑块在播放时返回到幻灯片 1。

有什么想法吗?

I have mod_rewrite working with all my urls.

But I have some anchor links, such as Back to Top referencing #top.

I also have a jquery slider with a start stop button. This button uses a href="#" to trigger, but this is not starting or stopping the slider, instead it reloads the page. And therefore the slider goes back to slide 1 with the slider playing.

Any ideas?

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

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

发布评论

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

评论(1

吹泡泡o 2024-12-10 04:11:09

mod_rewrite 与此无关。您需要阻止 A 链接的默认功能。

内容如下:

$('a.slidertrigger').click(function(e) {
    e.preventDefault();
});

mod_rewrite has nothing to do with it. You need need prevent the default functionality of an A link.

Something in the lines of:

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