带按钮的jQuery字段集选项卡

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带按钮的jQuery字段集选项卡相关的知识,希望对你有一定的参考价值。

This is inspired by jQuery autotabs plugin by Keywan Ghadami. I've made a few changes to allow for more versatility and to add button navigation.
  1. /*!
  2.  * forked from:
  3.  * Copyright (c) 2010 Keywan Ghadami (ibson.com)
  4.  * jQuery autotabs Plugin
  5.  *
  6.  * Dual licensed under the MIT and GPL licenses:
  7.  * http://www.opensource.org/licenses/mit-license.php
  8.  * http://www.gnu.org/licenses/gpl.html
  9.  */
  10. (function($j){
  11. $j.fn.fieldset_tabs = function(options){
  12. return this.each(function() {
  13. var tabs = $j(this);
  14. var $jul = $j('<ul></ul>');
  15. tabs.prepend($jul);
  16. tabs.find('fieldset').each(function(i){
  17. var title = $j(this).find('legend').text();
  18. $j(this).find('legend').remove();
  19. var id = 'tab_' + i;
  20. $j(this).attr('id', id);
  21. $jul.append('<li><a href="#'+ id + '">'+title +'</a></li>');
  22. });
  23. var $jtabs = tabs.tabs();
  24. $j('.ui-tabs-panel').each(function(h){
  25. var tsize = $j('.ui-tabs-panel').size() - 1;
  26. var height = $j(this).height();
  27. if (h != 0){
  28. prev = h -1;
  29. $j(this).append("<button type='button' style='float:left;clear:both;margin-top:"+height+"px;' class='prev-tab mover' data-pos='"+ prev + "'><span class='icon leftarrow'></span>Prev</button>")
  30. }
  31. if (h != tsize){
  32. next = h + 1;
  33. $j(this).append("<button type='button' style='float:right;margin-top:"+height+"px;' class='next-tab mover' data-pos='"+ next + "'>Next <span class='icon rightarrow'></span></button>")
  34. }
  35. });
  36. $j('.next-tab, .prev-tab').live('click', function(){
  37. $jtabs.tabs('select', $j(this).data('pos'));
  38. return false;
  39. });
  40. return tabs.tabs();
  41.  
  42. });
  43. }
  44. })(jQuery);

以上是关于带按钮的jQuery字段集选项卡的主要内容,如果未能解决你的问题,请参考以下文章

带有片段的 Android Up 按钮未显示完整片段

从 Activity 到特定选项卡/片段的按钮 OnClick

片段和活动之间没有传递值

jquery标签下的CSS错误

按下锁定/主页按钮时的通知,单击返回选项卡片段时的通知

重新创建片段布局