1

我有一个页面,其中包含多个显示相似内容的选项卡,为了确保访问正确选项卡中的正确字段,我想在用户单击选项卡后立即清除其他选项卡的 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 都有一个带有相同字段但值不同的表单,但是当您选择第二页的选项卡时,您将获得第一页字段的值。

4

1 回答 1

6

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

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

Update: I've just updated my code above to just change load for beforeLoad event so the siblings tab contents are removed before the page of the current tab is executed.

于 2012-11-14T08:33:38.400 回答