jQuery Mobile es una tecnología basada en la web que se utiliza para crear contenido receptivo para sitios web a los que se puede acceder en todo tipo de teléfonos inteligentes, tabletas y computadoras de escritorio.
En este artículo, usaremos el método de jQuery Mobile Droppable disabled() para deshabilitar el droppable y esto tampoco acepta ningún parámetro.
Sintaxis:
$(“.selector”).droppable(“deshabilitar”);
Parámetros: este método no acepta ningún parámetro.
Enlace CDN: a continuación se muestran algunos scripts de jQuery Mobile que se necesitarán para su proyecto, así que agréguelos a su proyecto.
<enlace rel=”hoja de estilo” href=”https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”https://code.jquery.com/jquery-1.12.4.js”></script>
<script src=”https://code.jquery.com/ui/1.12.1/jquery-ui.js”></script>
Ejemplo: Este ejemplo describe los usos del método disabled() de jQuery Mobile Droppable.
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> <style> .dragg { width: 90px; height: 50px; border: 1px solid black; background-color:blue; } .dropp2, .dropp3 { width: 200px; height: 50px; border: 1px solid black; float : center; background-color:green; } </style> <script> $(function() { $( ".dragg" ).draggable(); $( ".dropp2" ).droppable({ drop: function( event, ui ) { $( this ) .find( "p" ) .html( "Dropped!" ); } }); $( ".dropp3" ).droppable("disable"); $( ".dropp3" ).droppable({ drop: function( event, ui ) { $( this ) .find( "p" ) .html( "Dropped!" ); } }); }); </script> </head> <body> <center> <h1 style = "color:green;">GeeksforGeeks</h1> <h3>jQuery UI Droppable disable() method</h3> <div class = "dragg"> <p>Drag</p> </div> <br><br> <div class = "dropp2"> <p>Drop here</p> </div> <br><br> <div class = "dropp3"> <p>Disable - Can't Drop Here</p> </div> </center> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/droppable/#method-disable
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA