jQuery UI Dialog closeOnEscape选项

  • Post category:jquery

以下是关于 jQuery UI 的对话框 closeOnEscape 选项的完整攻略:

jQuery UI 的对话框 closeOnEscape 选项

在 jQuery UI 中,可以使用 dialog() 方法创建一个对话框。closeOnEscape 选项可以指定是否允许用户按下 ESC 键关闭对话框。

语法

$(selector).dialog({
  closeOnEscape: boolean
});

其中,selector 是要应用 dialog() 方法的元素的选择器,closeOnEscape 是一个布尔值,指定是否允许用户按下 ESC 键关闭对话框。默认值为 true。

示例一:禁用按下 ESC 键关闭对话框

<!DOCTYPE html>
<html>
<head>
  <title>jQuery UI Dialog closeOnEscape 选项</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(){
      $("#dialog").dialog({
        closeOnEscape: false
      });
    });
  </script>
</head>
<body>
  <div id="dialog" title="对话框">
    <p>这是一个对话框。</p>
  </div>
</body>
</html>

这将创建一个对话框,禁用按 ESC 键关闭对话框。

示例二:启用按下 ESC 键关闭对话框

<!DOCTYPE html>
<html>
<head>
  <title>jQuery UI Dialog closeOnEscape 选项</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(){
      $("#dialog").dialog({
        closeOnEscape: true
      });
    });
  </script>
</head>
<body>
  <div id="dialog" title="对话框">
    <p>这是一个对话框。</p>
  </div>
</body>
</html>

这将创建一个对话框,启用按下 ESC 键关闭对话框。

总结:

在 jQuery UI 中,可以使用 dialog() 方法创建一个对话框。closeOnEscape 选项可以指定是否允许用户按下 ESC 键关闭对话框。

以上是关于 jQuery UI 的对话框 closeOnEscape 选项的完整攻略。