jQuery UI es una tecnología basada en la web y consta de widgets de GUI, efectos visuales y temas implementados mediante jQuery , Biblioteca de JavaScript. jQuery UI es la mejor herramienta para crear interfaces de interfaz de usuario para las páginas web. También se puede usar para crear aplicaciones web altamente interactivas o se puede usar para agregar widgets fácilmente.
En este artículo, aprenderemos a usar la opción jQuery UI Draggable appendTo . Esta opción nos permite encontrar a qué elemento se debe agregar el ayudante arrastrable mientras se arrastra. El valor por defecto de esta opción es “parent” .
Esta opción admite los siguientes tipos múltiples:
- jQuery: este tipo es un objeto jQuery que contiene el elemento al que agregar el ayudante.
- Elemento: este tipo es el elemento al que añadir el ayudante.
- Selector: este tipo es un selector que especifica a qué elemento agregar el ayudante.
- String: este tipo es la string «principal» que hará que el ayudante sea un hermano del arrastrable.
Sintaxis:
La opción appendTo toma un valor de tipo definido anteriormente y la sintaxis es la siguiente.
-
$( ".selector" ).draggable({ appendTo: "body" });
Obtenga la opción appendTo:
-
var appendTo = $( ".selector" ).draggable( "option", "appendTo" );
Establezca la opción appendTo:
$( ".selector" ).draggable( "option", "appendTo", "body" );
Enlace CDN: Se necesitarán los siguientes scripts de jQuery Mobile para su proyecto, por lo que debemos agregar estos scripts a 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: Este ejemplo describe los usos de la opción jQuery UI Draggable appendTo.
HTML
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"> <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> <style> .dragg { width: 90px; height: 40px; border: 1px solid black; background-color: blue; } .dropp2{ width: 250px; height: 40px; border: 1px solid black; float: center; background-color: green; } #btn { padding: 0.5; font-size: 20px; width: 20%; } </style> <script> $(function () { $("#btn").on('click', function () { var appendTo = $(".dragg") .draggable( "option", "appendTo" ); $("#gfg").html("Draggable are appended to: "+appendTo); }); }); $(function () { $(".dragg").draggable({ appendTo: "body" }); $(".dropp2").droppable({ drop: function (event, ui) { $(this).find("p").html("Dropped!"); } }); }); </script> </head> <body> <center> <h1 style="color:green;">GeeksforGeeks</h1> <h3>jQuery UI Draggable appendTo Option</h3> <div class="dragg"> <p>Drag</p> </div> <br> <div class="dropp2"> <p>Drop here</p> </div> <br> <input type="button" id="btn" value="Click"> <h3><span id="gfg"></span></h3> </center> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/draggable/#option-appendTo
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA