これを試してください:http://jsfiddle.net/wZPzB/
良いリンク: http://jqueryui.com/demos/tabs/
ツールライブラリを使用しないスクリプトの下でJQツールを使用しないことをどのように意味するのですか。
それが原因に適合することを願っています!:)
スクリプト
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.8.18/jquery-ui.min.js"></script>
<script type="text/javascript" src="/js/lib/jquery.lint-11-06.js"></script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/ui-lightness/jquery-ui.css">
コード==>$( "#tabs" ).tabs();
var $tabsList = $( "<ul></ul>" );
$( ".tab h3" )
.each( function( idx ) {
var $this = $( this ),
tabId = "tabs-" + idx;
$tabsList.append( "<li><a href='#" + tabId + "'>" + $this.text() + "</a></li>" );
$this
.parent()
.removeClass( "tab" )
.attr( "id", tabId );
$this.remove();
} );
$tabsList.prependTo( ".tabs" );
$( ".tabs" ).tabs();