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


jQWidgets jqxButton imgHeight屬性用法及代碼示例


jQWidgets 是一個 JavaScript 框架,用於為 PC 和移動設備製作基於 Web 的應用程序。它是一個非常強大、經過優化、獨立於平台且得到廣泛支持的框架。 jqxButton 用於說明一個 jQuery 按鈕小部件,它使我們能夠在所需的網頁上顯示一個按鈕。

imgHeight 屬性用於設置或獲取顯示按鈕圖像的高度。它是 number 類型,默認值為 16。

用法:

設置 imgHeight 屬性:



$('#jqxButton').jqxButton({imgHeight:16, imgSrc:'gfg.png' }); 

返回 imgHeight 屬性:

var imgHeight = $('#jqxButton').jqxButton('imgHeight');

鏈接文件:從給定的鏈接下載 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/jqxbuttons.js”></script>

例:下麵的示例說明了 jQWidgets 中的 jqxButton imgHeight 屬性。

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>
</head>
  
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
        
        <h3>jQWidgets jqxButton imgHeight Property</h3>
        <br />
        
        <input type="button" id="jqxBtn" 
            style="padding:5px 20px" value="Click here" />
        <br />
          
        <div id="log"></div>
    </center>
  
    <script type="text/javascript">
        $(document).ready(function () {
            $("#jqxBtn").jqxButton({
                width:"150px",
                height:"80px",
                imgSrc: 
 "https://media.geeksforgeeks.org/wp-content/uploads/20211012130808/imgsr-200x200.png",
                imgPosition:"left",
                textPosition:"right",
                imgWidth:"40px",
                imgHeight:"30px",
            });
  
            $("#jqxBtn").on("click", function () {
                var imgh = $("#jqxBtn").jqxButton("imgHeight");
                $("#log").html("Height of button's image:" + imgh);
            });
        });
    </script>
</body>
  
</html>

輸出:

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




相關用法


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