使用 jquery 的复选框属性
<input type="checkbox" id="var1" name="s_k" >
<input type="checkbox" id="var2" name="s_k">
<input type="checkbox" id="var3" name="s_k">
在某些时候,复选框 id=var1 被选中并在某个操作后被禁用。现在,如果选择了 id var2 和 var3 复选框,如何获取新选择的框 id,即,使用 jquery 获取未禁用的复选框的 id
<input type="checkbox" id="var1" name="s_k" >
<input type="checkbox" id="var2" name="s_k">
<input type="checkbox" id="var3" name="s_k">
At some point the checkbox id=var1 is selected and disabled after a certain operation.Now then if id var2 and var3 checkbox are selected how to get the newly selected box id i.e, get ids of checkboxes which is not disabled using jquery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您的问题是“我该如何做我刚才说的那件事?”,在这种情况下,您可以结合
:not
和:disabled
选择器:I'm assuming your question is "how can I do that thing I just said?", in which case, you can combine the
:not
and:disabled
selectors: