jQuery UI Resizable disabled 选项

  • Post category:jquery

以下是关于 jQuery UI Resizable disabled 选项的完整攻略:

jQuery UI Resizable disabled 选项

在 jQuery UI Resizable 中,可以使用 disabled 选项来禁用或启用可调整大小的元素。当 disabled 选项设置为 true 时,元素将无法调整大小。

语法

$(selector).resizable({
  disabled: true
});

其中,selector 是要调整大小的元素的选择器。

示例一:禁用可调整大小的元素

<!DOCTYPE html>
<html>
<head>
  <title>jQuery UI Resizable disabled 选项</title>
  <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/smoothness/jquery-ui.css">
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  <script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
  <script>
    $(document).ready(function(){
      $("#resizable").resizable({
        disabled: true
      });
    });
  </script>
  <style>
    #resizable {
      width: 150px;
      height: 150px;
      background-color: #ccc;
    }
  </style>
</head>
<body>
  <div id="resizable"></div>
</body>
</html>

这将创建一个可调整大小的元素,并使用 disabled 选项将其禁用。

示例二:启用和禁用可调整大小的元素

<!DOCTYPE html>
<html>
<head>
  <title>jQuery UI Resizable disabled 选项</title>
  <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/smoothness/jquery-ui.css">
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  <script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
  <script>
    $(document).ready(function(){
      $("#resizable").resizable({
        disabled: true
      });
      $("#enable").click(function(){
        $("#resizable").resizable("option", "disabled", false);
      });
      $("#disable").click(function(){
        $("#resizable").resizable("option", "disabled", true);
      });
    });
  </script>
  <style>
    #resizable {
      width: 150px;
      height: 150px;
      background-color: #ccc;
    }
  </style>
</head>
<body>
  <div id="resizable"></div>
  <button id="enable">启用</button>
  <button id="disable">禁用</button>
</body>
</html>

这将创建一个可调整大小的元素和两个按钮。当用户单击“启用”按钮时,将使用 option() 方法将 disabled 选项设置为 false,以启用元素。当用户单击“禁用”按钮时,将使用 option() 方法将 disabled 选项设置为 true,以禁用元素。

总结:

在 jQuery UI Resizable 中,可以使用 disabled 选项来禁用或启用可调整大小的元素。当 disabled 选项设置为 true 时,元素将无法调整大小。

以上是关于 jQuery UI Resizable disabled 选项的完整攻略。