jquery 选项卡 - 在当前面板中打开链接不起作用
我刚刚开始使用 Jquery ui 选项卡。 Tabs的内容一开始主要是静态内容。
现在,面板中的某些内容确实具有指向某种子内容的链接。 因此,如果用户单击面板中的链接,我想用来自链接的内容替换当前面板的内容。
所以我直接使用 jquery ui tab 文档中的脚本,但我无法让它工作。 它始终直接打开链接,而不是在面板内打开。 我用于测试的代码非常简单:
<div id="MyTabs">
<ul>
<li><a href="#TestTab1">TestTab</a></li>
<li><a href="#TestTab2">TestTab</a></li>
</ul>
<div id="TestTab1">
Lorem ipsum dolor. dumm di dumm
<a href="http://mywebserver/somelink">Test</a>
</div>
<div id="TestTab2">
Lorem ipsum dolor. dumm di dumm 2
<a href="http://mywebserver/somelink2">Test 2</a>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
$('#MyTabs').tabs({
load: function(event, ui) {
$('a', ui.panel).click(function() {
$(ui.panel).load(this.href);
return false;
});
}
});
});
此外,如果我使用 AJAX 调用加载面板的内容,则面板内的任何链接都不起作用。
知道我做错了什么吗?
非常感谢您的帮助,
问候
Maik
Edit1:
好的,我得到了进一步的了解。 我用以下代码片段替换了 Javascript:
$(function() {
$("#MyTabs").tabs();
$("#MyTabs").bind('tabsshow', function(event, ui) {
AddClickHandler(ui);
});
});
function AddClickHandler(ui) {
$('a', ui.panel).click(function() {
MyAlert("AddClickHandler");
$(ui.panel).load(this.href, AddClickHandler(ui));
return false;
});
}
在此更改之后,面板上的所有链接都将更新当前面板的内容。 到目前为止,一切都很好。 还剩下一个问题。 我无法让它适用于后续链接。 当 ajax 调用完成时,我尝试使用第二个“AddClickHandler”进行回调。 使用带有简单警报的不同函数表明,当面板内容更新时,它实际上被调用。 但我无法将任何内容绑定到该内容中的新链接。 “$('a', ui.panel)...”不起作用。 正确的选择器是什么?
有什么提示吗?
问候
迈克
I just started playing around with the Jquery ui tabs. The content of the Tabs consist mainly of static content at the beginning.
Now some of the content within the panels do have Links to some kind of subcontent. So if the User clicks on a link in the panel I would like to replace the content of the current panel with the content coming from the link.
So I used the script directly from the jquery ui tab documentation but I can't get it to work. It is always opening the link directly, not within the panel. The code I use for testing is quite simple:
<div id="MyTabs">
<ul>
<li><a href="#TestTab1">TestTab</a></li>
<li><a href="#TestTab2">TestTab</a></li>
</ul>
<div id="TestTab1">
Lorem ipsum dolor. dumm di dumm
<a href="http://mywebserver/somelink">Test</a>
</div>
<div id="TestTab2">
Lorem ipsum dolor. dumm di dumm 2
<a href="http://mywebserver/somelink2">Test 2</a>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
$('#MyTabs').tabs({
load: function(event, ui) {
$('a', ui.panel).click(function() {
$(ui.panel).load(this.href);
return false;
});
}
});
});
Additionally, if I have the content of the panel loaded using an AJAX call no link within the panel is working whatsoever.
Any idea what I`m doing wrong?
Help is really appreciated
Regards
Maik
Edit1:
OK, I got a bit further. I replaced the Javascript with the following snippet:
$(function() {
$("#MyTabs").tabs();
$("#MyTabs").bind('tabsshow', function(event, ui) {
AddClickHandler(ui);
});
});
function AddClickHandler(ui) {
$('a', ui.panel).click(function() {
MyAlert("AddClickHandler");
$(ui.panel).load(this.href, AddClickHandler(ui));
return false;
});
}
After this change all links on a panel will update the content of the current panel. So far so good. Still one problem left. I can't get it to work for subsequent links. I tried to do it with the second "AddClickHandler" for callback when the ajax call has finished. Using a different function with a simple alert showd it is actually been called when the content of the panel has been updated. But I can't bind anything to the new links in that content. The "$('a', ui.panel)..." doesn't work. What would be the correct selector for this?
Any hint?
Regards
Maik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来根本不正确..
示例如下所示:
注意,链接位于选项卡本身中,而不是选项卡内容中
编辑:
好的,我想我看到你的问题了。 我没有看到任何代码可以让您在选项卡中注册打开这些链接。 因此,当用户单击链接时,它会像普通链接一样在浏览器窗口内打开......无论如何。
尝试这样的事情:
编辑2:
我刚刚意识到您的“加载”函数与我上面编写的函数执行相同的操作。 无论如何,尝试我的函数,看看它是否有效,如果它确实使用 firebug 单步执行你的函数,看看有什么不同,如果它没有.. 使用 firebug 单步执行你的函数.. 或者提供在线演示,我可以看看它
编辑3:
好的,这是更好的解决方案:
添加此功能:
可能不是最好的解决方案,因为每次打开链接时它都会将单击功能重新绑定到所有链接。 但目前可能没问题,除非您正在构建一些生产站点
that doesnt look right at all..
the example looks like this:
notice, the links are in the TABs themselves, not in the tab content
Edit:
Ok, i think i see your problem. I dont see any code for you to register opening of those links within the tabs. so when the user clicks a link, it will open inside the browser window like a normal link.. anyway.
try something like this:
Edit2:
I just realized that your "load" function does the same thing as the function i wrote above. anyway, try my function and see if it works, if it doesm step through your function with firebug and see what is different, and if it doesnt.. step through your function with firebug.. or provide an online demo and i can look at it
Edit3:
Ok here is better solution:
add this function:
probably not the best solution, since it will rebind the click function to all links every time a link is opened. but probably ok for now, unless you are building some production site
您可以按如下方式使用 live() :
you can use live() as follows: