jQWidgets jqxGauge LinearGauge disable()方法
jQWidgets
是一个基于jQuery
的UI组件库,提供了丰富的UI组件和工具,包括格、图、日历、菜单等。jqxGauge
和jqxLinearGauge
是jQWidgets
中的两个组件,用于显示仪表盘和线性仪表盘。这两个件都提供了disable()
方法,用于禁用组件。
disable()
方法的基本语法
disable()
方法用于禁用组件。其基本语法如下:
// 禁用仪表盘
$('#jqxGauge').jqxauge('disable');
// 禁用线性仪表盘
$('#jqxLinearGauge').jqxLinearGauge('disable');
在jqxGauge
和jqxLinearGauge
组件中,可以使用disable()
方法来禁用组件。
示例1:禁用jqxGauge
以下是一个示例,演示如何使用disable()
方法禁用jqxGauge
:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQWidgets Gauge Example</title>
<link rel="stylesheet" href="https://cdn.jqwidgets/jquery.jqwidgets/4.5.3/jqwidgets/styles/jqx.base.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script srchttps://cdn.jqwidgets.com/jquery.jqwidgets/4.5.3/jqwidgets/jqxcore.js"></script>
<script src="https://cdn.jqwidgets.com/jquery.jqwidgets/4.5.3/jqwidgets/jqx.js"></script>
<script src="https://cdn.jqwidgets.com/jquery.jqwidgets/4.5.3/jqwidgets/jqxbuttons.js"></script>
<script src="https://cdn.jqwidgets.com/jquery.jqwidgets/4.5.3/jqwidgets/jqxgauge.js"></script>
</head>
<body>
<div id="jqxGauge"></div>
<button id="disableBtn">Disable Gauge</button>
<script>
$().ready(function () {
$('#jqxGauge').jqxauge({
ranges: [
{ startValue: 0, endValue: 50, style: { fill: '#4cb848', stroke: '#4cb848' }, startDistance: 0, endDistance: 0 },
{ startValue: 50, endValue: 90, style: { fill: '#fad00b', stroke: '#00b' }, startDistance: 0, endDistance: 0 },
{ startValue: 90, endValue: 100, style: { fill: '#e00000', stroke: '#e00000' }, startDistance: 0, endDistance: 0 }
],
value: 75
});
$('#disableBtn').click(function () {
$('#jqxGauge').jqxauge('disable');
});
});
</script>
</body>
</html>
在这个示例中,我们使用jqxGauge
组件创建了一个仪表盘,并使用disable()
方法禁用了该组件。同时,我们还添加了一个按钮,点击该按钮禁用仪表盘。
示例2:禁用jqxLinearGauge
以下是另一个示例,演示如何使用disable()
方法禁用jqxLinearGauge
:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQWidgets LinearGauge Example</title>
<link rel="stylesheet" href="https://cdn.jqwidgets.com/jquery.jqwidgets/4.5.3/jqwidgets/styles/jqx.base.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jqwidgets.com/jquery.jqwidgets/4.5.3/jqwidgets/jqxcore.js"></script>
<script src="https://cdn.jqwidgets.com/jquery.jqwidgets/4.5.3/jqwidgets/jqxdata.js"></script>
<script src="https://cdn.jqwidgets.com/jquery.jqwidgets/4.5.3/jqwidgets/jqxbuttons.js"></script>
<script src="https://cdn.jqwidgets.com/jquery.jqwidgets/4.5.3/jqwidgets/jqxlineargauge.js"></script>
</head>
<body>
div id="jqxLinearGauge"></div>
<button id="disableBtn">Disable Linear Gauge</button>
<script>
$(document).ready(function () {
$('#jqxLinearGauge').jqxLinearGauge({
orientation: 'vertical',
ticksMajor: { size: '10%', interval: 10 },
ticksMinor: { size: '5%', interval: 2.5, style: { 'stroke-width': 1, stroke: '#aaaaaa' } },
max: 100,
min: 0,
value: 75,
ranges: [
startValue: 0, endValue: 30, style: { fill: '#4cb848', stroke: '#4cb848' }, startDistance: '0%', endDistance: '25%' },
{ startValue: 30 endValue: 70, style: { fill: '#fad00b', stroke: '#fad00b' }, startDistance: '0%', endDistance: '25%' },
{ startValue: 70, endValue: 100, style: { fill: '#e00000', stroke: '#e00000' }, startDistance: '0%', endDistance: '25%' }
]
});
$('#disableBtn').click(function () {
$('#jqxLinearGauge').jqxLinearGauge('disable');
});
});
</script>
</body>
</html>
在这个示例中,我们使用jqxLinearGauge
组件创建了一个线性仪表盘,并使用disable()
方法禁用了该组件。同时,我们还添加了一个按钮,点击该按钮禁用线性仪表盘。
综上所述,jqxGauge
和jqxLinearGauge
组件都提供了disable()
方法,用于禁用件。本文详细介绍了disable()
方法的使用和示例。
参考
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:jQWidgets jqxGauge LinearGauge disable()方法 - Python技术站