-4
A
回答
1
這就是答案。
//.pager is the pagination container
$('.pager').find('.previous, .next').click(function(e) {
e.preventDefault();
//.nav-tabs is the tabs container
var tabs = $('.nav-tabs');
var currentTab = $(tabs).find('.active');
var previousTab = $(currentTab).prev();
var nextTab = $(currentTab).next();
//find if the event's class is next or previous
if ($(this).is('.previous')) {
$(previousTab).find('a').click();
}
if ($(this).is('.next')) {
$(nextTab).find('a').click();
}
});
相關問題
- 1. 分頁標籤
- 2. bootstrap導航標籤與will_paginate分頁在每個標籤
- 3. Codeigniter Bootstrap分頁
- 4. jquery bootstrap分頁
- 5. Kohana分頁和JavaScript標籤
- 6. Rails(分頁和標籤)
- 7. 標籤分頁幫助
- 8. Searchcontainer分頁與標籤
- 9. 分頁鏈接和標籤
- 10. 雷分頁標籤引導
- 11. 部分頁面上的Bootstrap標籤閃爍
- 12. ui bootstrap分頁不能在ng-if標籤內工作
- 13. Twitter頁面標籤Bootstrap:不隱藏標籤內容
- 14. Bootstrap表格分頁
- 15. Angular UI-Bootstrap分頁
- 16. Controls.Add被(標籤頁)與TabPages.Add(標籤頁)
- 17. 在標籤頁
- 18. 標籤頁
- 19. bootstrap中的高亮頁面分頁
- 20. 如何通過標籤頁的名稱關閉標籤頁上的標籤頁
- 21. Yii和Bootstrap分頁訪問
- 22. Bootstrap 3表分頁錯誤
- 23. Bootstrap分頁不起作用
- 24. Jquery Bootstrap分頁和搜索
- 25. GWT/GWT Bootstrap - 分頁(SimplePager)
- 26. AngularJS - ui-bootstrap分頁。隱藏
- 27. Bootstrap acf wp與get_posts分頁
- 28. 分頁CSS樣式(Bootstrap)
- 29. 分頁ngx bootstrap爲angular2
- 30. Chrome擴展標籤頁網頁圖標
我會刪除它! – Edward 2014-10-03 19:58:21