MediaWiki:TemplateTabs.js:修订间差异

    来自真佛百科
    Tbpedia>Sophivorus
    (Created page with "→‎* * This script interacts with [[Template:Tabs]] * [[Category:Template script pages]]:​ $( '.template-tabs' ).each( function () { $( this ).children( '.template-tabs-t..."
     
    (导入1个版本)
     
    (没有差异)

    2024年3月2日 (六) 17:13的最新版本

    /**
     * This script interacts with [[Template:Tabs]]
     * [[Category:Template script pages]]
     */
    
    $( '.template-tabs' ).each( function () {
    	$( this ).children( '.template-tabs-tab' ).each( function ( index ) {
    		$( this ).click( function () {
    			var tab = $( this );
    			tab.children( 'span' ).addClass( 'active' )
    			tab.siblings( '.template-tabs-tab' ).children( 'span' ).removeClass( 'active' );
    			tab.siblings( '.template-tabs-content' ).hide().eq( index ).show();
    		} );
    	} );
    } );