Easyui 常用语法-Checkbox

1.CheckBox隐藏与显示

$(function () {
            $("input").on("click", function () {
                var other = document.getElementById("").value;
                //alert(other);
                //alert(txt);
                if (other != "on") {
                    $("#").next().hide();
                    //txt = "block";
                    alert(other + "11111");
                    alert(txt + "11111");
                }
            }
           )
        })

2.CheckBox Change事件

$(function () {
            $("#").change(function () {
                var val = $(this).prop("checked");
                if (val)
                {
                    alert(val);
                    $("#").attr("disabled", true);
                    $("#").attr("disabled", true);
                    $("#").attr("disabled", true);
                    $("#").attr("disabled", true);
                    $("#").attr("disabled", true);
                    $("#").next().hide();
                }
                else
                {
                    alert(val+"11111111111");
                    $("#").attr("disabled", false);
                    $("#").attr("disabled", false);
                    $("#").attr("disabled", false);
                    $("#").attr("disabled", false);
                    $("#").attr("disabled", false);
                    $("#").attr("disabled", false);
                    $("#").next().hide();
                }
            });

2.CheckBox 禁止多选
        $(function () {
            $("#").change(function () {
                //var id = document.getElementsByName("").constructor;
                var val = $(this).prop("checked");
                if (val) {
                    var = $('input[name=]').val();
                    //$('input[name=]').attr("disabled", true);
                    $("input[name=]").prop("disabled", true);
                    $("input[name=]").prop("disabled", true);
                    $("input[name=]").prop("disabled", true);
                    $("input[name=]").prop("disabled", true);
                    $("input[name=]").prop("disabled", true);

                    $("#").next().show();
                    $('#').textBox('readonly', false);
                    $("#").textBox({ required: true });
                    $('#').checkBox('disableValidation')//在弹出窗体的方法里先去除验证的样式
                    $('#').checkBox('enableValidation')//在保存的方法里再加上需要验证的样式
                }
                else {
                    $("input[name=]").prop("disabled", false);
                    $("input[name=]").prop("disabled", false);
                    $("input[name=]").prop("disabled", false);
                    $("input[name=]").prop("disabled", false);
                    $("input[name=]").prop("disabled", false);
                    $("input[name=]").prop("disabled", false);
                    $("#").next().hide();
                    //$("#").("disabled", true);
                    $('#').textBox('readonly', true);
                    $("#").textBox({ required: false });
                    $("#").textBox({ required: false });
                    $("#").textBox('setValue', '')//清空文本框
                }
            });
        })    

3.CheckBox 只能选择一个

$(function checkCheckBox() {
            $('#').find('input[id=]').bind('click', function () {
                var id = $(this).attr("id");
                var name = $(this).attr("name");
                if (name == "" || name == "" || name == "" || name == "") {
                    $("#").textBox({ required: false });
                }
                else {
                    $("#").textBox({ required: true });
                }
                //当前的checkBox是否选中
                if (this.checked) {
                    //除当前的checkBox其他的都不选中
                    $("#fm").find('input[id=]').not(this).attr("checked", false);
                    //选中的checkBox数量
                    var selectleng = $("input[id='']:checked").length;

                    console.log("选中的checkBox数量" + selectleng);
                } else {
                    //未选中的处理
                    console.log("未选中的处理");
                }
            });
        })

相关文章

显卡天梯图2024最新版,显卡是电脑进行图形处理的重要设备,...
初始化电脑时出现问题怎么办,可以使用win系统的安装介质,连...
todesk远程开机怎么设置,两台电脑要在同一局域网内,然后需...
油猴谷歌插件怎么安装,可以通过谷歌应用商店进行安装,需要...
虚拟内存这个名词想必很多人都听说过,我们在使用电脑的时候...