📜  jQWidgets jqxPasswordInput refresh() 方法(1)

📅  最后修改于: 2023-12-03 15:16:55.934000             🧑  作者: Mango

jQWidgets jqxPasswordInput refresh() 方法

简介

jQWidgets jqxPasswordInput是一个用于输入密码的jQuery插件。refresh()方法是其中的一个方法,它用于刷新输入框。

用法
基本用法
// 获取jqxPasswordInput对象
var myPasswordInput = $('#myPasswordInput')[0];

// 调用refresh()方法
myPasswordInput.refresh();
参数

refresh()方法没有任何参数。

示例

以下示例展示了如何使用refresh()方法刷新一个jqxPasswordInput。

<!DOCTYPE html>
<html>
<head>
  <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jqwidgets/5.5.0/jqxcore.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jqwidgets/5.5.0/jqxpasswordinput.js"></script>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqwidgets/5.5.0/jqx.base.css">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqwidgets/5.5.0/jqx.fresh.css">
  <meta charset="utf-8">
  <title>Example</title>
</head>
<body>
  <div id="myPasswordInput"></div>
  <button id="refreshButton">Refresh</button>

  <script>
    // 初始化jqxPasswordInput
    $('#myPasswordInput').jqxPasswordInput({});

    // 绑定button的点击事件
    $('#refreshButton').click(function() {
      // 获取jqxPasswordInput对象并调用refresh()方法
      $('#myPasswordInput')[0].refresh();
    });
  </script>
</body>
</html>
参考文献