如何从 Javascript 禁用 CheckBoxList 中的项目?
我有一个包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 nextAll 并执行以下操作(假设 jquery 版本 > 1.6):
在这里小提琴: http://jsfiddle.net /nicolapeluchetti/QpAz6/
You could use nextAll and do (this assumes jquery version > 1.6):
fiddle here: http://jsfiddle.net/nicolapeluchetti/QpAz6/
您是否考虑使用 5 个
CheckBox
控件...have you consider using 5
CheckBox
controls ....