¿Cómo hacer una casilla de verificación deshabilitada usando jQuery Mobile?

jQuery Mobile es una tecnología basada en la web que se utiliza para crear contenido receptivo al que se puede acceder en todos los teléfonos inteligentes, tabletas y computadoras de escritorio. En este artículo, crearemos una casilla de verificación deshabilitada usando jQuery Mobile.

Enfoque: agregue los scripts jQuery Mobile necesarios para su proyecto.

<enlace rel=”hoja de estilo” href=”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />

<script src=”http://code.jquery.com/jquery-1.11.1.min.js”></script>

<script src=”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

Ejemplo: crearemos una casilla de verificación deshabilitada usando jQuery Mobile. Creamos la casilla de verificación usando el atributo input type=”checkbox” y usamos disabled=”disabled” para deshabilitar la casilla.

HTML

<!DOCTYPE html>
<html>
  
<head>
    <link rel="stylesheet" href=
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
  
    <script src="http://code.jquery.com/jquery-1.11.1.min.js">
    </script>
  
    <script src=
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">
    </script>
</head>
  
<body>
    <center>
        <h1>GeeksforGeeks</h1>
  
        <h4>
            Design a Disabled Checkbox
            using jQuery Mobile
        </h4>
  
        <form style="width: 50%;">
            <fieldset data-role="controlgroup" 
                data-iconpos="right">
  
                <input type="checkbox" disabled="" 
                    name="groupcheckbox1" 
                    id="groupcheckbox1" data-theme="b">
                <label for="groupcheckbox1">
                    Themed Disabled
                </label>
  
                <input type="checkbox" name="groupcheckbox2" 
                    id="groupcheckbox2" data-theme="b">
                <label for="groupcheckbox2">
                    Themed Not Disabled
                </label>
  
                <input type="checkbox" disabled="" 
                    name="groupcheckbox3" id="groupcheckbox3">
                <label for="groupcheckbox3">Disabled</label>
  
                <input type="checkbox" name="groupcheckbox4" 
                    id="groupcheckbox4">
                <label for="groupcheckbox4">Not Disabled</label>
            </fieldset>
        </form>
    </center>
</body>
  
</html>

Producción:

Publicación traducida automáticamente

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