jqueryui 显示此选项卡上隐藏的选项卡内容
我的选项卡中有一个 iframe,其中包含隐藏元素,我想在打开选项卡时显示该元素。
该元素(同一类)也在所有选项卡下,但我只想显示当前选项卡下的元素。
这是我的非工作尝试:
$("#tabs").tabs({
collapsible: true,
show: function(event, ui) {
ui.find("iframe").contents().find("#hidden").show();
}
});
更正将不胜感激,谢谢。
I have an iframe in a tab with a hidden element, and I want to show the element when the tab is opened.
This element (same class) is also under all the tabs, but I only want the element under the current tab to be shown.
Here's my non working attempt at it:
$("#tabs").tabs({
collapsible: true,
show: function(event, ui) {
ui.find("iframe").contents().find("#hidden").show();
}
});
Corrections would be appreciated, thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你想使用 ui.panel 而不是 ui。 ui 参数上的 panel 属性将是当前显示的面板(选项卡)。
I think you want to use ui.panel instead of ui. The panel attribute on the ui parameter will be the current panel (tab) being shown.