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 に答える