如何从 Javascript 禁用 CheckBoxList 中的项目?

发布于 2024-11-27 01:39:13 字数 92 浏览 1 评论 0原文

我有一个包含 5 个固定项目的 CheckBoxList 。当检查第一个项目时,我希望禁用其余项目 - 仅客户端。

你能帮我吗?

I have a CheckBoxList with 5 fixed items. When the first item is checked, I want the rest to be disabled - client side only.

Could you help me with that please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

弥繁 2024-12-04 01:39:14

您可以使用 nextAll 并执行以下操作(假设 jquery 版本 > 1.6):

<div id='check'>
    <input type='checkbox' >
    <input type='checkbox' >
    <input type='checkbox' >
    <input type='checkbox' >
    <input type='checkbox' >
</div>

$('#check input:checkbox:first').click(function(){
    if($(this).is(':checked')){
       $(this).nextAll('input:checkbox').prop('disabled', true);
    }else{
        $(this).nextAll('input:checkbox').removeProp('disabled');
    }
});

在这里小提琴: http://jsfiddle.net /nicolapeluchetti/QpAz6/

You could use nextAll and do (this assumes jquery version > 1.6):

<div id='check'>
    <input type='checkbox' >
    <input type='checkbox' >
    <input type='checkbox' >
    <input type='checkbox' >
    <input type='checkbox' >
</div>

$('#check input:checkbox:first').click(function(){
    if($(this).is(':checked')){
       $(this).nextAll('input:checkbox').prop('disabled', true);
    }else{
        $(this).nextAll('input:checkbox').removeProp('disabled');
    }
});

fiddle here: http://jsfiddle.net/nicolapeluchetti/QpAz6/

凝望流年 2024-12-04 01:39:14

您是否考虑使用 5 个 CheckBox 控件...

have you consider using 5 CheckBox controls ....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文