我可以将 jQuery UI 选项卡小部件配置为在用户单击选项卡时转到新页面吗?
使用 jQuery UI 选项卡小部件的默认方法是将每个选项卡的内容放在同一 html 页面上的 div 中。每个选项卡是否可以链接到不同的页面?
The default way of using the jQuery UI Tabs widget is to have each tab's content in a div on the same html page. Is it possible for each tab to be a link to a different page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,为什么要使用 jQuery 选项卡而不是普通的 HTML
?
我想您可以添加一个选项卡更改处理程序,使用
window.location
导航到新地址,如下所示:编辑,如果您只想为样式执行此操作,您可以简单地将正确的类添加到您的elements:
即使用户禁用了浏览器中的所有 JavaScript,这也将起作用。
Why would you use jQuery tabs instead of normal HTML
<a>
in that scenario?I guess you could add a tab change hadler that navigates to a new address using
window.location
, like this:EDIT, if you want to do this just for styling, you can simply add right classes to your elements:
This will work even if user has disabled all javascript in the browser.