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>
輸出:
相關用法
- jQWidgets jqxButton disabled屬性用法及代碼示例
- jQWidgets jqxButton delay屬性用法及代碼示例
- jQWidgets jqxButton theme屬性用法及代碼示例
- jQWidgets jqxButton template屬性用法及代碼示例
- jQWidgets jqxButton height屬性用法及代碼示例
- jQWidgets jqxButton roundedCorners屬性用法及代碼示例
- jQWidgets jqxButton rtl屬性用法及代碼示例
- jQWidgets jqxButton textPosition屬性用法及代碼示例
- jQWidgets jqxButton toggled屬性用法及代碼示例
- jQWidgets jqxButton value屬性用法及代碼示例
- jQWidgets jqxButton width屬性用法及代碼示例
- jQWidgets jqxButton imgSrc屬性用法及代碼示例
- jQWidgets jqxButton imgWidth屬性用法及代碼示例
- jQWidgets jqxButton imgPosition屬性用法及代碼示例
- jQWidgets jqxButton textImageRelation屬性用法及代碼示例
- jQWidgets jqxButton unCheck()用法及代碼示例
- jQWidgets jqxButton toggle()用法及代碼示例
- jQWidgets jqxButton render()用法及代碼示例
- jQWidgets jqxButton check()用法及代碼示例
- jQWidgets jqxButton destroy()用法及代碼示例
- jQWidgets jqxButton focus()用法及代碼示例
- jQWidgets jqxButton val()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 jQWidgets jqxButton imgHeight Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。