📅  最后修改于: 2023-12-03 15:02:20.501000             🧑  作者: Mango
jQWidgets jqxRadioButton 是一款功能强大的单选框组件。enable() 方法是 jqxRadioButton 中的一个方法,用于启用或禁用单选框。
方法名称:enable()
方法作用:启用或禁用单选框
方法语法:enable(enabled: boolean): void
参数说明:
返回值:无
<!-- HTML 代码 -->
<div id="jqxRadioButton"></div>
// JavaScript 代码
$("#jqxRadioButton").jqxRadioButton({ width: 200 });
$("#jqxRadioButton").jqxRadioButton("disable");
$("#jqxRadioButton").jqxRadioButton("enable");
在上述示例中,我们创建了一个宽度为 200 像素的单选框,并对其进行了禁用和启用操作。首先,我们通过 $("#jqxRadioButton").jqxRadioButton({ width: 200 })
对单选框进行初始化,然后通过 $("#jqxRadioButton").jqxRadioButton("disable")
将其禁用,最后再通过 $("#jqxRadioButton").jqxRadioButton("enable")
将其启用。
$("input[name='radioGroup']").jqxRadioButton("disable")
。