JS 选项卡式导航 - 如何保持 url 的工作
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里最好的策略是直接链接到
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.