jQueryUI选项卡:选中选项卡时,清除其他选项卡的div

时间:2012-11-14 08:25:32

标签: jquery jquery-ui jquery-ui-tabs

我有一个页面,其中有几个显示类似内容的标签,以确保我在正确的标签中访问正确的字段,我想在用户点击标签后立即清除其他标签的div的内容。

这是我使用的代码:

<!doctype html>

<html lang="en">
<head>
    <meta charset="utf-8" />
    <title>WebShop</title>
     <link rel="stylesheet" type="text/css" href="/includes/igepa.css" />
     <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
     <link rel="stylesheet" href="/resources/demos/style.css" />


    <script src="http://code.jquery.com/jquery-1.8.2.js"></script>
    <script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>    

    <script>
    $(function() {
        $( "#tabs" ).tabs({
            beforeLoad: function( event, ui ) {
                ui.jqXHR.error(function() {
                    ui.panel.html(
                        "Couldn't load this tab. We'll try to fix this as soon as possible. " +
                        "If this wouldn't be a demo." );
                });
            },
            load: function(event, ui){
               $('.ui-tabs-hide').empty();  
            }                          
        });
    });
    </script>
</head>
<body>

<div id="tabs">
    <ul>
        <li><a href="/itemStructPaper/Enveloppen">Enveloppen</a></li>
        <li><a href="/itemStructPaper/GrafischKarton">Grafisch karton</a></li>
    </ul>
</div>


</body>
</html>

我在这里添加了一个示例:http://www.igepa.be/phdj/tabs/index.htm

page1.htm和page2.htm都有一个表单,其中包含相同的字段但值不同,但是当您选择第二页的选项卡时,您将获得第一页的字段值。

1 个答案:

答案 0 :(得分:6)

您可以使用ui参数并参考其兄弟姐妹来执行此操作,如下所示:

   beforeLoad: function(event, ui){
      $(ui.panel).siblings('.ui-tabs-panel').empty();
    }

更新:我刚刚更新了上面的代码,只更改了load事件的beforeLoad,因此在当前标签页面之前删除了兄弟选项卡内容执行。