JS 选项卡式导航 - 如何保持 url 的工作

发布于 2024-09-26 11:51:43 字数 339 浏览 3 评论 0原文

我使用 jQuery 使用 this技术。我希望能够链接到打开不同选项卡的页面。

目前,索引页面加载并保存隐藏 div 中所有页面的内容,并在选择选项卡时以动画显示每个页面。我想保留此功能,但也允许直接链接 (domain.com/section_title) 工作。现在,jQuery 正在使用设置为元素 id 的 href 元素 (href="#section") 将功能添加到链接。

感谢您的帮助!

I've built a basic tabbed interface using jQuery using this technique. I want to be able to link to the page with different tabs open.

At the moment the index page loads and holds the content for all the pages in hidden divs and displays each with an animation when the tab is selected. I want to keep this functionality, but also allow direct links (domain.com/section_title) to work. Right now jQuery is adding the functionality to links using href elements set to element ids (href="#section").

Thanks for any help!

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

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

发布评论

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

评论(1

不喜欢何必死缠烂打 2024-10-03 11:51:43

这里最好的策略是直接链接到 domain.com/Index.html#section 并设置 jquery 以加载页面上预先打开的“section”选项卡。

为此功能设置 domain.com/index/section 语法并不简单,因为服务器将查找“section”页面,并且默认情况下不会加载选项卡式“index”页面。但是,有一些方法可以做到这一点,例如通过 ASP.NET 路由

The best strategy here is to link directly to domain.com/Index.html#section and set up the jquery to load the "section" tab as pre-opened on the page.

It's not trivial to set up domain.com/index/section syntax for this functionality, because the server will look for a "section" page and not load your tabbed "index" page by default. However, there are ways to do it, such as via ASP.NET Routing.

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