我將在我的web應用程序上使用JQuery UI Tabs插件。需要一些建議來使用JQuery UI選項卡添加新選項卡!
現在我需要一些建議來解決問題。
首先,我想要在新選項卡及其內容創建時選擇新添加的選項卡。例如。當我點擊製作一個新標籤時,應該儘快顯示新標籤及其內容。
其次,我需要身邊標籤列表按鈕[應該是最後的選項卡]創建新的空白標籤和內容。只是鏈接Firefox或Chrome的標籤樣式。所以,我可以讓用戶自己加載新內容。
非常感謝您的任何建議!
[UPDATE] 要切換新創建Tab.There是做一個插件選項:
Zero-based index of the tab to be selected on initialization. To set all tabs to unselected pass -1 as value.
代碼示例
Initialize a tabs with the selected option specified.
$(".selector").tabs({ selected: 3 });
Get or set the selected option, after init.
//getter
var selected = $(".selector").tabs("option", "selected");
//setter
$(".selector").tabs("option", "selected", 3);
感謝。但是這樣我不得不做大量的addClass()和removeClass()。我會稍後再嘗試。 – qinHaiXiang 2011-01-28 06:29:28