0

您好我在另一个页面上链接到 ajaxtabs 时遇到问题。

我已经从另一个页面直接查看了此链接到 jQuery 选项卡?这正是我想做的。但是我的内容是通过 Ajax 加载的,它也有 'stickytab' cookie。

我正在使用 jQuery UI Tabs 1.8.22,可以帮帮我吗?

4

1 回答 1

0
 <script>
  $(function() {
    $( "#tabs" ).tabs({
      ajaxOptions: {
        error: function( xhr, status, index, anchor ) {
          $( anchor.hash ).html(
            "Couldn't load this tab. We'll try to fix this as soon as possible. " +
            "Please contact webmaster@tch.anu.edu.au" );
        }
      }
    });
  });
  </script>

     <script type="text/javascript">
    $(function(){
      $(".tabs").tabs();
      if($(".tabs") && document.location.hash){
        $.scrollTo(".tabs");
      }
      $(".tabs ul").localScroll({
        target:".tabs",
        duration:0,
        hash:true
      });
    });
  </script>

<script type="text/javascript">
  $( function()
  {
    var cookieName = 'stickyTab';

    $( '#tabs' ).tabs( {
      selected: ( $.cookies.get( cookieName ) || 0 ),
      select: function( e, ui )
      {
        $.cookies.set( cookieName, ui.index );
      }
    } );
  } );
</script>
于 2012-09-04T03:13:18.490 回答