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


jQWidgets jqxNotification disabled屬性用法及代碼示例


jQWidgets 是一個 JavaScript 框架,用於為 PC 和移動設備製作基於 Web 的應用程序。它是一個非常強大、優化、獨立於平台且得到廣泛支持的框架。 jqxNotification 代表一個 jQuery 小部件,可用於向用戶顯示一些通知內容。 jqxNotification可以根據用戶需求進行修改。

禁用 屬性 用於設置或返回禁用屬性。即該屬性用於設置或返回通知是否被禁用。它接受布爾類型值,默認值為錯誤的.

用法:

  • 設置禁用屬性。

    $('Selector').jqxNotification({ disabled : boolean });
  • 返回禁用屬性。

    var disabled = $('Selector').jqxNotification('disabled');

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

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

例子:下麵的例子說明了jqxNotification禁用jQWidgets 中的屬性:

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <link rel="stylesheet" href= 
    "jqwidgets/styles/jqx.base.css" type="text/css" /> 
    <script type="text/javascript" 
        src="scripts/jquery-1.11.1.min.js"></script> 
    <script type="text/javascript" 
        src="jqwidgets/jqxcore.js"></script> 
    <script type="text/javascript" 
        src="jqwidgets/jqxnotification.js"></script> 
</head> 
  
<body> 
    <h1 style="color: green"> 
        GeeksforGeeks 
    </h1> 
      
    <h3>jQWidgets jqxNotification disabled property</h3> 
      
    <div id="not"> 
        Notification 
    </div> 
      
    <script type="text/javascript"> 
        $(document).ready(function () { 
            $("#not").jqxNotification({ 
                width: "auto",  
                position: "top-left", 
                opacity: 0.9, 
                autoOpen: true, 
                autoClose: false, 
                disabled: true, 
                template: "info", 
                position: 'center' 
            }); 
        }); 
    </script> 
</body> 
  
</html> 

輸出:

參考: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxnotification/jquery-notification-api.htm?search=



相關用法


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