以下是关于 jQWidgets jqxRadioButton 组件中 uncheck() 方法的详细攻略。
jQWidgets jqxRadioButton uncheck() 方法
jQWidgets jqxRadioButton 组件的 uncheck() 方法用于取消选中单选按钮。
语法
// 取消选中单选按钮
$('#radioButton').jqxRadioButton('uncheck');
参数
uncheck() 方法没有参数。
示例
以下两个示例演示如何使用 uncheck() 方法。
示例 1
// 取消选中单选
$('#radioButton').jqxRadioButton('uncheck');
在示例 1 中,我们使用 uncheck() 方法取消选中了单选按钮。
示例 2
<!DOCTYPE html>
<html>
<head>
<meta charsetUTF-8">
<title>jQ jqxRadioButton Uncheck Method</title>
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/jqx.base.css" type="text/css" />
<script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jqxcore.js"></script>
<script type="text/javascript" src="https://jqwidgets.com/public/jqwidgets/scripts/jqxbuttons.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#radioButton').jqxRadioButton({
width: 120, height: 25
});
$('#uncheckButton').click(function () {
$('#radioButton').jqxRadioButton('uncheck');
});
});
</script>
</head>
<body>
<div id="radioButton">Radio Button</div>
<button id="uncheckButton">Uncheck Button</button>
</body>
</html>
在示例 2 中,我们创建了一个单选按钮,并使用 uncheck() 方法取消选中了它。我们还创建了一个按钮,当点击该按钮时,会用 uncheck() 方法取消选中单选按钮。
注意事项
- uncheck() 方法用于取消选中单选按钮。
- uncheck() 方法通过 jqxRadioButton 方法调用。
- uncheck() 方法可以与其他 jqxRadioButton 方法一起使用。
总之,uncheck() 方法用于取消选中单选按钮。以上两个示例演示了如何使用 uncheck() 方法。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:jQWidgets jqxRadioButton uncheck()方法 - Python技术站