当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQWidgets jqxPopover showCloseButton属性用法及代码示例


jQWidgets 是一个 JavaScript 框架,用于为 PC 和移动设备制作基于 Web 的应用程序。它是一个非常强大、优化、独立于平台且得到广泛支持的框架。 jqxPopover 是内容的一个小覆盖层,用于在用户单击任何元素时显示该元素的辅助信息。

显示关闭按钮属性用于设置或获取指定的关闭按钮是否jqxPopover小部件是否显示。

用法:

  • 用于设置显示关闭按钮属性:

    $('#jqxPopover').jqxPopover({showCloseButton: true});
  • 为了得到显示关闭按钮属性:

    var arrowOffsetValue = 
        $('#jqxPopover').jqxPopover('showCloseButton');

链接文件:下载jQWidgets从给定的链接。在 HTML 文件中,找到下载文件夹中的脚本文件。

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

例子:下面的示例说明了 jQWidgets jqxPopover显示关闭按钮属性。在下面的示例中,值显示关闭按钮属性已设置为真的.

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/jqxbuttons.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxpopover.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqx-all.js"> 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;">GeeksforGeeks</h1> 
        <h3>jQWidgets jqxPopover showCloseButton Property</h3> 
        <div id='jqx_Popover'> 
            <center> 
                GeeksforGeeks 
            </center> 
        </div> 
        <input type="button" style="margin: 28px;" 
               id="button_for_Popover" 
               value="Toggle the Popover" /> 
        <input type="button" style="margin:65px;" 
               id="button_for_showCloseButton"
           value="Value of the showCloseButton property"/> 
        <div id="log"></div> 
        <script type="text/javascript"> 
            $(document).ready(function () { 
                $("#jqx_Popover").jqxPopover({ 
                    width: 180, 
                    height: 80, 
                    theme: 'energyblue', 
                    autoClose: false, 
                    showCloseButton: true, 
                    selector: $("#button_for_Popover"), 
                    title: 'Company_Name' 
                }); 
                $("#button_for_Popover").jqxButton({ 
                    width: 200, 
                    theme: 'energyblue' 
                }); 
                $("#button_for_showCloseButton").jqxButton({ 
                    width: 300, 
                    theme: 'energyblue' 
                }); 
                $('#button_for_showCloseButton') 
                .jqxButton().click(function () { 
                    var Value_of_showCloseButton = 
                      $('#jqx_Popover').jqxPopover('showCloseButton'); 
                    $("#log").html((Value_of_showCloseButton)); 
                }) 
            }); 
        </script> 
    </center> 
</body> 
</html>

输出:

参考:https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxpopover/jquery-popover-api.htm?search=



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 jQWidgets jqxPopover showCloseButton Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。