从另一个 DIV 中选择 jQuery 选项卡
我试图将 jQuery 选项卡的链接定位在选项卡内容下,并将选项卡导航放在自己的 DIV 中(出于样式目的)。这是我的标记:
<div id="fpTabs">
<div id="fpTab-1">
<p>This is the first tab</p>
</div>
<div id="fpTab-2">
<p>This is the second tab...</p>
</div>
<div id="fpTab-3">
<p>This is the third tab.. </p>
</div>
</div>
<div id="fpTabs-nav">
<ul>
<li><a href="#fpTab-1">Tab 1</a></li>
<li><a href="#fpTab-2">Tab 2</a></li>
<li><a href="#fpTab-3">Tab 3</a></li>
</ul>
</div>
如何使用 #fpTabs-nav 中的 ul 来激活选项卡进行导航?
谢谢!
I am trying to position links to jQuery Tabs under the tab content, with the tabs navigation in its own DIV (for styling purposes). Here is my markup:
<div id="fpTabs">
<div id="fpTab-1">
<p>This is the first tab</p>
</div>
<div id="fpTab-2">
<p>This is the second tab...</p>
</div>
<div id="fpTab-3">
<p>This is the third tab.. </p>
</div>
</div>
<div id="fpTabs-nav">
<ul>
<li><a href="#fpTab-1">Tab 1</a></li>
<li><a href="#fpTab-2">Tab 2</a></li>
<li><a href="#fpTab-3">Tab 3</a></li>
</ul>
</div>
How would I go about activating Tabs using the ul in #fpTabs-nav for navigation?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用它以编程方式选择特定选项卡
所以它会是这样的:
You can use this to select a specific tab programmatically
So it would be something like: