jQuery UI的Selectable instance()方法

  • Post category:jquery

jQuery UI的Selectable instance()方法

jQuery UI的Selectable instance()方法用于获取选择器的可选择实例。该方法返回一个可选择的实例,可以使用该实例调用可选择的方法。

语法

以下是Selectable instance()方法的语法:

$(selector).selectable("instance");

其中,selector是要获取可选择实例的选择器。

示例1:使用Selectable instance()方法获取可选择实例并调用方法

以下是使用Selectable instance()方法获取选择实例并调用方法的示例:

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>jQuery UI Selectable instance()方法示例</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.13.0/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-3.6.0.min.js"></script>
  <script src="//code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
  <script>
    $(function() {
      var selectableInstance = $("#selectable").selectable("instance");
      selectableInstance.disable();
    });
  </script>
</head>
<body>
  <ul id="selectable">
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
    <li>Item 5</li>
  </ul>
</body>
</html>

在上面的示例中,我们首先引入了jQuery和jQuery UI库。然后,我们创建了一个<ul>元素,并使用selectable()使其可选择。接下来,我们使用Selectable instance()方法获取可选择实例,并使用该实例调用disable()方法来禁用可选择。

示例2:使用Selectable instance()方法获取可选择实例并调用方法

以下是使用Selectable instance()方法获取可选择实例并调用方法的示例:

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>jQuery UI Selectable instance()方法示例</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.13.0/themes/smoothness/jquery-ui.css">
  <style>
    .ui-selected {
      background-color: #ccc;
      color: #fff;
    }
  </style>
  <script src="//code.jquery.com/jquery-3.6.0.min.js"></script>
  <script src="//code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
  <script>
    $(function() {
      var selectableInstance = $("#selectable").selectable("instance");
      selectableInstance.option("selected", function(event, ui) {
        $(ui.selected).addClass("ui-selected");
      });
    });
  </script>
</head>
<body>
  <ul id="selectable">
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
    <li>Item 5</li>
  </ul>
</body>
</html>

在上面的示例中,我们首先引入了jQuery和jQuery UI库。然后,我们创建了一个<ul>元素,并使用selectable()使其可选择。接下来,我们使用Selectable instance()方法获取可选择实例,并使用该实例调用option()方法来设置选中元素的样式。

总结

Selectable instance()方法用于获取选择器的可选择实例。我们可以使用该实例调用可选择的方法,例如禁用可选择或设置选中元素的样式。在实际开发中,我们可以根据需要使用Selectable instance()方法,并进行相应的操作。