EasyUI es un marco HTML5 para usar componentes de interfaz de usuario basados en tecnologías jQuery, React, Angular y Vue. Ayuda a crear funciones para aplicaciones móviles y web interactivas, lo que ahorra mucho tiempo a los desarrolladores.
En este artículo, aprenderemos cómo diseñar un botón de enlace usando jQuery EasyUI. El botón de enlace
Descargas para EasyUI para jQuery:
https://www.jeasyui.com/download/index.php
Sintaxis:
<div class="linkbutton"> </div>
Propiedades:
- ancho: El ancho de este componente.
- altura: La altura de este componente.
- id: El atributo id de este componente.
- disabled: True para desactivar el botón.
- alternar: True para permitir que el usuario cambie su estado a seleccionado o no seleccionado.
- seleccionado: Define si el estado del botón es seleccionado.
- grupo: El nombre del grupo que indica a qué botones pertenecen.
- plain: Verdadero para mostrar un efecto simple.
- texto: El texto del botón.
- iconCls: una clase de CSS para mostrar un icono de 16 × 16 a la izquierda.
- iconAlign: Posición del icono del botón.
- tamaño: El tamaño del botón.
Eventos:
Métodos:
- options : Propiedad de opciones de retorno.
- redimensionar : Cambiar el tamaño del botón.
- deshabilitar : deshabilitar el botón.
- habilitar : habilitar el botón.
- seleccionar : seleccione el botón.
- deseleccionar : Deseleccionar el botón.
Enlace CDN: Primero, agregue los scripts jQuery Easy UI necesarios para su proyecto.
<script type=”text/javascript” src=”jquery.min.js”> </script>
<!–Bibliotecas jQuery de EasyUI –>
<script type=”text/javascript” src=”jquery.easyui.min. js”> </script>
<!–Biblioteca jQuery de EasyUI Mobile –>
<script type=”text/javascript” src=”jquery.easyui.mobile.js”> </script>
Ejemplo:
HTML
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- EasyUI specific stylesheets--> <link rel="stylesheet" type="text/css" href="themes/metro/easyui.css"> <link rel="stylesheet" type="text/css" href="themes/mobile.css"> <link rel="stylesheet" type="text/css" href="themes/icon.css"> <!--jQuery library --> <script type="text/javascript" src="jquery.min.js"> </script> <!--jQuery libraries of EasyUI --> <script type="text/javascript" src="jquery.easyui.min.js"> </script> <!--jQuery library of EasyUI Mobile --> <script type="text/javascript" src="jquery.easyui.mobile.js"> </script> <script type="text/javascript"> $(document).ready(function (){ $('#gfg').linkbutton({ text: "GeeksforGeeks" }); }); </script> </head> <body> <h1>GeeksforGeeks</h1> <h3>EasyUI jQuery linkbutton widget</h3> <a href= "https://www.geeksforgeeks.org/" id="gfg" class="easyui-linkbutton"> </a> </body> </html>
Producción:
Referencia: http://www.jeasyui.com/documentation/