當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQWidgets jqxWindow minHeight屬性用法及代碼示例


jQWidgets 是一個 JavaScript 框架,用於為 PC 和移動設備製作基於 Web 的應用程序。它是一個非常強大、優化、獨立於平台且得到廣泛支持的框架。 jqxWindow 用於在應用程序中輸入數據或查看信息。

minHeight 屬性用於設置或獲取指定窗口的最小高度。

用法:

設置 minHeight 屬性:

$('#jqxWindow').jqxWindow({ minHeight: '65px' });  

獲取 minHeight 屬性:

var minHeight = $('#jqxWindow').jqxWindow('minHeight'); 

鏈接文件:下載jQWidgets從給定的鏈接。在 HTML 文件中,找到下載文件夾中的腳本文件。

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.summer.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.10.2.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxwindow.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>

例子:下麵的例子說明了jqxWindow最小高度jQWidgets 中的屬性。在此示例中,minHeight 設置為 250。

HTML


<html> 
<head> 
    <link rel="stylesheet" href= 
        "jqwidgets/styles/jqx.base.css" type="text/css"/> 
    <link rel="stylesheet" href= 
        "jqwidgets/styles/jqx.summer.css" type="text/css"/> 
    <script type="text/javascript" 
            src="scripts/jquery-1.10.2.min.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxcore.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxwindow.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxbuttons.js"> 
    </script> 
    <script type="text/javascript"> 
    $(document).ready(function() { 
       $("#jqxwindow").jqxWindow({ 
        width: 300, 
        theme:'energyblue', 
        minHeight: 250 
      }); 
    }); 
    </script> 
</head> 
<body> 
    <center> 
      <h1 style="color: green;">  
        GeeksforGeeks  
      </h1> 
      <h3> jQWidgets jqxWindow minHeight Property </h3> 
      <div id='content'> 
          <div id='jqxwindow'> 
          <div> Header</div> 
          <div> 
              <div>GeeksforGeeks</div> 
          </div> 
          </div> 
      </div> 
    </center> 
</body> 
</html>

輸出:

參考: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxwindow/jquery-window-api.htm



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 jQWidgets jqxWindow minHeight Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。