我使用jquery_ui標籤,我的標籤是這個樣子:如何隱藏空標籤
<div id="mytabs">
<ul>
<li class="tab-one"><a href="#onepane">apples</a></li>
<li class="tab-two"><a href="#twopane">berries</a></li>
<li class="tab-three"><a href="#threepane">citrus</a></li>
</ul>
<div id="onepane">green apples, red apples</div>
<div id="twopane">blueberries, raspberries </div>
<div id="threepane"></div>
</div>
我的問題:
作爲標籤內容的變化,我想動態地隱藏任何空標籤。在上面的示例中,我想隱藏第三個選項卡「柑橘」,因爲其相應的選項卡不包含任何內容。有誰知道如何做到這一點?
我看着jquery_ui選項卡文檔(http://jqueryui.com/demos/tabs/),並通過stackoverflow和谷歌搜索,但沒有找到任何解決我的問題。 – moondog
http://stackoverflow.com/questions/5383755/jquery-ui-tabs-how-can-i-remove-tab-list-item-if-corresponding-content-panel-i –