jQuery UI Dialog minWidth选项

jQuery UI Dialog minWidth选项

Dialog minWidth选项用于设置可设置为对话框的最小宽度,单位为像素。默认情况下,该值为150。

语法:

$( ".selector" ).dialog({
  minWidth : 150
});

方法:首先,添加你的项目所需的jQuery UI脚本。

<link href=”https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css”>
<script src=”https://code.jquery.com/jquery-1.10.2.js”></script>
<script src=”https://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>

示例 1:

<!DOCTYPE html>
<html>
<head>
  <link href=
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" 
        rel="stylesheet">
  <script src=
"https://code.jquery.com/jquery-1.10.2.js">
  </script>
  <script src=
"https://code.jquery.com/ui/1.10.4/jquery-ui.js">
  </script>
  <script>
    (function () {
      ("#gfg").dialog({
        autoOpen: false,
        minWidth: 150
      });
  
      ("#geeks").click(function () {
        ("#gfg").dialog("open");
      });
    });
  </script>
</head>
<body>
  <div id="gfg">
    Jquery UI| minWidth dialog option
  </div>
  <button id="geeks">Open Dialog</button>
</body>
</html>

输出:

jQuery UI Dialog minWidth选项

示例 2:

<!DOCTYPE html>
<html>
<head>
  <link href=
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
        rel="stylesheet">
  <script src=
"https://code.jquery.com/jquery-1.10.2.js">
  </script>
  <script src=
"https://code.jquery.com/ui/1.10.4/jquery-ui.js">
  </script>
  <script>
    (function () {
      ("#gfg").dialog({
        autoOpen: true,
        minWidth: 500
      });
    });
  </script>
</head>
<body>
  <div id="gfg">
    Jquery UI| minWidth dialog option
  </div>
</body>
</html>

输出:

jQuery UI Dialog minWidth选项

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程