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


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


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

顯示關閉按鈕屬性用於設置或獲取關閉按鈕在指定窗口的標題部分是否可見。

用法:

  • 用於設置顯示關閉按鈕屬性。
$('#jqxWindow').jqxWindow({ showCloseButton: true });  
  • 為了得到 顯示關閉按鈕屬性。
var showCloseButton = $('#jqxWindow').jqxWindow('showCloseButton'); 

鏈接文件:下載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 中的屬性。在下麵的例子中, 顯示關閉按鈕 已設置為真的.

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<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({ 
                height: 100, 
                width: 300, 
                theme: "energyblue", 
                showCloseButton: true, 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;"> 
          GeeksforGeeks 
        </h1> 
        <h3> 
          jQWidgets jqxWindow showCloseButton 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?search=



相關用法


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