Pestañas de jQuery UI Opción activa

edificio activo activo 

Sintaxis:

$( ".selector" ).tabs(
   { active: 1 }
);

Parámetros:

  • booleano: si se establece en falso colapsará todos los paneles. Si se establece en verdadero, la pestaña de índice 0 estará activa.
  • número:

Enfoque: Primero, agregue los scripts jQuery UI necesarios para su proyecto.

<enlace href = «https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css» rel = «hoja de estilo»>
<script src = «https://code. jquery.com/jquery-1.10.2.js”></script>
<script src = “https://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>

Ejemplo 1:

HTML

<!doctype html>
<html lang="en">
  
<head>
    <meta charset="utf-8">
  
    <link href=
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
        rel="stylesheet">
  
    <script src=
        "https://code.jquery.com/jquery-1.10.2.js">
    </script>
      
    <script src=
        "https://code.jquery.com/ui/1.10.4/jquery-ui.js">
    </script>
  
    <script>
        $(function () {
            $("#gfg").tabs({
                active: 2
            });
        });
    </script>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h3>jQuery UI tabs active option</h3>
      
    <div id="gfg">
        <ul>
            <li><a href="#gfg1">Tab 1</a></li>
            <li><a href="#gfg2">Tab 2</a></li>
            <li><a href="#gfg3">Tab 3</a></li>
        </ul>
  
        <div id="gfg1">
            <p>tab Number -1</p>
        </div>
  
        <div id="gfg2">
            <p>tab Number -2</p>
        </div>
  
        <div id="gfg3">
            <p>tab Number -3</p>
        </div>
    </div>
</body>
  
</html>

Producción:

Ejemplo 2:

HTML

<!doctype html>
<html lang="en">
  
<head>
    <meta charset="utf-8">
  
    <link href=
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
        rel="stylesheet">
          
    <script src=
        "https://code.jquery.com/jquery-1.10.2.js">
    </script>
      
    <script src=
        "https://code.jquery.com/ui/1.10.4/jquery-ui.js">
    </script>
  
    <script>
        $(function () {
            $("#gfg").tabs({
                active: false
            });
        });
    </script>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h3>jQuery UI tabs active option</h3>
  
    <div id="gfg">
        <ul>
            <li><a href="#gfg1">Tab 1</a></li>
            <li><a href="#gfg2">Tab 2</a></li>
            <li><a href="#gfg3">Tab 3</a></li>
        </ul>
  
        <div id="gfg1">
            <p>tab Number -1</p>
        </div>
  
        <div id="gfg2">
            <p>tab Number -2</p>
        </div>
  
        <div id="gfg3">
            <p>tab Number -3</p>
        </div>
    </div>
</body>
  
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *