Las pestañas de jQuery UI crean un evento

jQuery UI consta de widgets GUI, efectos visuales y temas implementados mediante HTML , CSS y jQuery . jQuery UI es excelente para crear interfaces de interfaz de usuario para las páginas web. El widget de pestañas de jQuery UI se usa para crear un área de contenido única con varios paneles que están asociados con un encabezado en una lista.

El evento jQuery UI Tabs create se usa para desenstringr cuando se crea el widget de pestañas. Los objetos ui.tab y ui.panel estarán vacíos si las pestañas están contraídas.

El evento de creación de pestañas acepta 2 valores que se enumeran a continuación.

  • event: Representa el evento para el widget de pestañas.
  • ui: es de tipo objeto y contiene los siguientes valores:
    • tab: Representa las pestañas activas.
    • panel: Representa el panel activo.

Sintaxis:

Inicialice las pestañas con la devolución de llamada de creación .

$( ".selector" ).tabs({
      create: function( event, ui ) {}
});

Vincule un detector de eventos al evento tabscreate .

$( ".selector" ).on( 
    "tabscreate", 
    function( event, ui ) {} 
);

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

<enlace rel=”hoja de estilo” href=”//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”//code.jquery.com/jquery- 1.12.4.js”></script>
<script src=”//code.jquery.com/ui/1.12.1/jquery-ui.js”></script>

Ejemplo: Este ejemplo describe los usos de los eventos de creación de pestañas de jQuery UI .

HTML

<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="utf-8">
    <title>
        jQuery UI Tabs create Event
    </title>
    <link rel="stylesheet" href=
"//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
    <script src="//code.jquery.com/jquery-1.12.4.js">
    </script>
    <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js">
    </script>
    <style>
        #gfg {
            width: 600px;
            text-align: justify;
        }
    </style>
  
    <script>
        $(document).ready(function () {
            $("#gfg").on('tabscreate', function () {
                alert('Tabs create Event Triggered!');
            });
  
            $("#gfg").tabs();
        });
    </script>
</head>
  
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>jQuery UI Tabs create Event</h3>
  
    <div id="gfg">
        <ul>
            <li><a href="#gfg1">HTML</a></li>
            <li><a href="#gfg2">CSS</a></li>
            <li><a href="#gfg3">JavaScript</a></li>
            <li><a href="#gfg4">Bootstrap</a></li>
        </ul>
  
        <div id="gfg1">
            HTML stands for HyperText Markup Language. 
            It is used to design web pages using the 
            markup language. HTML is the combination 
            of Hypertext and Markup language. Hypertext 
            defines the link between the web pages and
            markup language defines the text document 
            within the tag that define the structure 
            of web pages.
        </div>
  
        <div id="gfg2">
            CSS (Cascading Style Sheets) is a stylesheet 
            language used to design a webpage to make it 
            attractive. The reason for using this is to 
            simplify the process of making web pages 
            presentable. It allows you to apply styles 
            on web pages. More importantly, it enables 
            you to do this independent of the HTML that 
            makes up each web page.
        </div>
  
        <div id="gfg3">
            JavaScript is the world most popular 
            lightweight, interpreted compiled programming 
            language. It is also known as scripting 
            language for web pages. It is well-known for 
            the development of web pages, many non-browser 
            environments also use it. JavaScript can be 
            used for Client-side developments as well as 
            Server-side developments.
        </div>
  
        <div id="gfg4">
            Bootstrap is a free and open-source tool 
            collection for creating responsive websites 
            and web applications. It is the most popular 
            HTML, CSS, and JavaScript framework for 
            developing responsive, mobile-first websites. 
            Nowadays, the websites are perfect for all 
            the browsers (IE, Firefox, and Chrome) and 
            for all sizes of screens (Desktop, Tablets, 
            Phablets, and Phones).
        </div>
    </div>
</body>
  
</html>

Producción:

 

Referencia: https://api.jqueryui.com/tabs/#event-create

Publicación traducida automáticamente

Artículo escrito por blalverma92 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 *