jQuery UI 对话框打开事件

  • Post category:jquery

以下是关于 jQuery UI 对话框打开事件的详细攻略:

jQuery UI 对话框打开事件

对话框打开事件是在对话框打开时触发的事件。可以使用该事件来执行一些操作,例如在对话框打开时加载数据或执行其他操作。

语法

$(selector).dialog({
  open: function(event, ui) {
    // 执行操作
  }
});

参数

  • open: 一个函数,指定对话框打开时要执行的操作。

示例一:使用函数选项

<!DOCTYPE html>
<html>
<head>
  <title>jQuery UI 对话框打开事件示例</title>
  <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>
  <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
</head>
<body>
  <button id="open-dialog">Open Dialog</button>
  <div id="dialog" title="Basic dialog">
    <p>This is an example dialog.</p>
  </div>
  <script>
    $( "#dialog" ).dialog({
      autoOpen: false,
      open: function(event, ui) {
        alert( "Dialog opened." );
      }
    });
    $( "#open-dialog" ).click(function() {
      $( "#dialog" ).dialog( "open" );
    });
  </script>
</body>
</html>

这将创建一个对话框,并在打开时弹出一个警告框。

示例二:使用外部函数

<!DOCTYPE html>
<html>
<head>
  <title>jQuery UI 对话框打开事件示例</title>
  <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>
  <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
</head>
<body>
  <button id="open-dialog">Open Dialog</button>
  <div id="dialog" title="Basic dialog">
    <p>This is an example dialog.</p>
  </div>
  <script>
    function dialogOpened(event, ui) {
      alert( "Dialog opened." );
    }
    $( "#dialog" ).dialog({
      autoOpen: false,
      open: dialogOpened
    });
    $( "#open-dialog" ).click(function() {
      $( "#dialog" ).dialog( "open" );
    });
  </script>
</body>
</html>

这将创建一个对话框,并在打开时调用外部函数。

总结:

对话框打开事件是在对话框打开时触发的事件。可以使用该事件来执行一些操作,例如在对话框打开时加载数据或执行其他操作。可以将其设置为函数或外部函数。