jquery tabs - 在当前选项卡中加载 url?
我试图弄清楚如何加载每个选项卡链接到选项卡区域内 onclick 的 url,并且一直在尝试遵循 http://docs.jquery.com/UI/Tabs#...open_links_in_the_current_tab_instead_of_leaving_the_page,但我显然不明白......
这是 HTML 标记:
<div class="tabs">
<ul class="tabNav">
<li><a href="/1.html#tabone">Tab One</a></li>
<li><a href="/2.html#tabtwo">Tab Two</a></li>
<li><a href="/3.html#tabthree">Tab Three</a></li>
</ul>
</div>
<div id="tabone">
<!-- Trying to load content from 1.html in this div on click -->
</div>
<div id="tabtwo">
<!-- Trying to load content from 2.html in this div on click -->
</div>
<div id="tabthree">
<!-- Trying to load content from 3.html in this div on click -->
</div>
这是我正在尝试使用的jquery:
$(".tabs").tabs({
load: function(event, ui) {
$('a', ui.panel).click(function() {
$(ui.panel).load(this.href);
return false;
});
}
});
我知道我的某些部分是错误的......我已经经历了几次迭代(太多而无法发布),我得到的只是一个空白的div ...我不知道...这里感觉有点困惑...帮忙?
I'm trying to figure out how to load the url each tab links to inside the tab area onclick, and have been trying to following the docs at http://docs.jquery.com/UI/Tabs#...open_links_in_the_current_tab_instead_of_leaving_the_page, but am clearly not getting it....
This is the HTML markup:
<div class="tabs">
<ul class="tabNav">
<li><a href="/1.html#tabone">Tab One</a></li>
<li><a href="/2.html#tabtwo">Tab Two</a></li>
<li><a href="/3.html#tabthree">Tab Three</a></li>
</ul>
</div>
<div id="tabone">
<!-- Trying to load content from 1.html in this div on click -->
</div>
<div id="tabtwo">
<!-- Trying to load content from 2.html in this div on click -->
</div>
<div id="tabthree">
<!-- Trying to load content from 3.html in this div on click -->
</div>
And this is the jquery I'm trying to use:
$(".tabs").tabs({
load: function(event, ui) {
$('a', ui.panel).click(function() {
$(ui.panel).load(this.href);
return false;
});
}
});
I know I've got some part of this wrong.... I've gone through several iterations (too many to post), and all I get is a blank div... I don't know... Feeling a bit confused here... Help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您引用的页面旨在加载当前选项卡中选项卡引用的链接,而不是从链接加载选项卡本身。您不需要使用 load 方法来获取链接作为选项卡来工作。
您真正需要的就是这个(您可以省略
tab
容器DIVS
)。我假设其他选项卡是相对的并代表完整的选项卡内容,因此我删除了前导/
和哈希。The page you reference is intended for loading links referenced on the tab in the current tab, not loading the tab itself from a link. You shouldn't need to use the load method to get links as tabs to work.
All you really should need is this (you can omit the
tab
containerDIVS
). I'm assuming that the other tabs are relative and represent the full tab contents so I've removed the leading/
and the hash.请确保在加载选项卡后添加以下 JS 代码。
干杯!!!
And please make sure you add following JS code also after loading tabs.
Cheers!!!