opción de edificio
Sintaxis:
$(".selector").tooltips( { track : true } );
Parámetros:
- Booleano: si se establece en falso, el
Enlace CDN: 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: en el siguiente ejemplo, la opción de seguimiento se establece en false . Consulte la imagen de salida para comprender.
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> <h1 style="color: green">GeeksforGeeks</h1> <h3>jQuery UI | Tooltip track option</h3> <script> $(function () { $("#gfg1").tooltip({ track: false, }); $("#gfg1").tooltip(); $("#gfg2").tooltip(); }); </script> </head> <body> <label for="name">Name:</label> <input id="gfg1" title="GeeksforGeeks" /> <p><a id="gfg2" href="" title="GeeksforGeeks"> Click here!</a></p> </body> </html>
Producción:
Ejemplo 2: En el siguiente ejemplo, la opción de seguimiento se establece en true . Consulte la imagen de salida para una mejor comprensión.
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> <h1 style="color: green">GeeksforGeeks</h1> <h3>jQuery UI | Tooltip track option</h3> <script> $(function () { $("#gfg1").tooltip({ track: true, }); $("#gfg1").tooltip(); $("#gfg2").tooltip(); }); </script> </head> <body> <label for="name">Name:</label> <input id="gfg1" title="GeeksforGeeks" /> <p><a id="gfg2" href="" title="GeeksforGeeks"> Click here!</a></p> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/tooltip/#option-track