Método jQWidgets jqxDraw clear()

jQWidgets es un marco de JavaScript para crear aplicaciones basadas en web para PC y dispositivos móviles. Es un marco muy potente, optimizado, independiente de la plataforma y ampliamente compatible. jqxDraw es un pequeño complemento basado en jQuery que se usa para dibujar formas y textos usando VML, SVG y HTML5.

El método clear() se utiliza para borrar el contenido del widget jqxDraw especificado.

Sintaxis:

$('#container').jqxDraw('clear');

Parámetros: este método no acepta ningún parámetro.

Valores devueltos: este método no devuelve ningún valor.

Archivos vinculados: descargue jQWidgets desde el enlace dado. En el archivo HTML, busque los archivos de script en la carpeta descargada.

<link rel=”hoja de estilo” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery.js”></ script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdraw.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>

Ejemplo: El siguiente ejemplo ilustra el método jQWidgets jqxDraw clear() .

HTML

<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet" href=
        "jqwidgets/styles/jqx.base.css" type="text/css" />
    <script type="text/javascript" 
        src="scripts/jquery-1.11.1.min.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqxcore.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqxdraw.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqx-all.js"></script>
</head>
  
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
  
        <h3>jQWidgets jqxDraw clear() Method</h3>
          
        <div id="jqx_Draw" style=
            "height:200px; width:280px;">
        </div>
  
        <input type="button" id="Button_for_clear" 
            style="padding:5px 15px; margin-top:40px;"
            value="Clear the content of the widget">
  
        <script type="text/javascript">
            $(document).ready(function () {
                $('#jqx_Draw').jqxDraw({
                    renderEngine: 'HTML5'
                });
  
                var Instance = $('#jqx_Draw').jqxDraw('getInstance');
                  
                Instance.circle(150, 100, 65, { fill: 'green' });
                Instance.refresh();
                  
                $("#Button_for_clear").jqxButton();
                  
                $("#Button_for_clear").click(function () {
                    Instance.clear();
                    Instance.refresh();
                });
            });
        </script>
    </center>
</body>
  
</html>

Producción:

jQWidgets jqxDraw clear() Method

Método jQWidgets jqxDraw clear()

Referencia: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxdraw/jquery-draw-api.htm?search=

Publicación traducida automáticamente

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