jQWidgets jqxRadioButton取消检查的事件

  • Post category:jquery

以下是关于 jQWidgets jqxRadioButton 组件中取消检查的事件的详细攻略。

jQWidgets jqxRadioButton 取消检查的事件

jQWidgets jqxRadioButton 组件的取消检查的事件用于在单选按钮取消选中时触发。

语法

// 取消检查的事件
$('#radioButton').on('uncheck', function (event) {
    // 处理取消检查的事件
});

参数

  • event:事件对象,包含有关事件的信息。

示例

以下两个示例演示如何取消检查的事件。

示例 1

// 取消检查的事件
$('#radioButton').on('uncheck', function (event) {
    console.log('Radio button unchecked!');
});

在示例 1 中,我们使用取消检查的事件,在单选按钮取消选中时打印一条消息。

示例 2

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>jQ jqxRadioButton Uncheck Event</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
            });
            $('#radioButton').on('uncheck', function (event) {
                $('#message').text('Radio button unchecked!');
            });
        });
    </script>
</head>
<body>
    <div id="radioButton">Radio Button</div>
    <div id="message"></div>
</body>
</html>

在示例 2 中,我们创建了一个单选按钮,并使用取消检查的事件,在单选按钮取消选中时显示一条消息。我们还创建了一个 div 元素,用于显示消息。

注意事项

  • 取消检查的事件用于在单选按钮取消选中时触发。
  • 取消检查的事件通过 on() 方法调用。
  • 取消检查的事件可以与其他 jqxRadioButton 方法一起使用。

总之,取消检查的事件用于在单选按钮取消选中时触发。以上两个示例演示了如何使用取消检查的事件。