如果选中复选框,则执行此操作
当我选中一个复选框时,我希望它变成
#0099ff
。
当我取消选中该复选框时,我希望它撤消该操作。
到目前为止我的代码:
$('#checkbox').click(function(){
if ($('#checkbox').attr('checked')) {
/* NOT SURE WHAT TO DO HERE */
}
})
When I check a checkbox, I want it to turn <p>
#0099ff
.
When I uncheck the checkbox, I want it to undo that.
Code I have so far:
$('#checkbox').click(function(){
if ($('#checkbox').attr('checked')) {
/* NOT SURE WHAT TO DO HERE */
}
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(11)
检查这个代码:
Check this code:
也许您可以使用此代码在选中或取消选中复选框时执行操作。
Probably you can go with this code to take actions as the checkbox is checked or unchecked.
我会做:
参见:https://www.w3schools.com/jsref/prop_checkbox_checked.asp< /a>
I would do :
See : https://www.w3schools.com/jsref/prop_checkbox_checked.asp
优化实现
Demo
Optimal implementation
Demo
为什么不使用内置事件?
Why not use the built in events?
试试这个。
有时我们过度使用jquery。使用 jquery 和纯 JavaScript 可以实现很多事情。
Try this.
Sometimes we overkill jquery. Many things can be achieved using jquery with plain javascript.
可能会出现“this.checked”始终处于“on”状态的情况。因此,我建议:
It may happen that "this.checked" is always "on". Therefore, I recommend:
最好是用不同的颜色定义一个类,然后
用这种方式切换类,这样你的代码会更干净,因为你不必指定所有 css 属性(假设你想添加边框、文本样式或其他属性) ...)但你只是换了一个班级
it's better if you define a class with a different colour, then you switch the class
in this way your code it's cleaner because you don't have to specify all css properties (let's say you want to add a border, a text style or other...) but you just switch a class
我找到了一个疯狂的解决方案来处理复选框未选中或选中的问题
这是我的算法...
创建一个全局变量,假设 var check_holder
check_holder 有 3 个状态
如果单击复选框,
上面的代码可以在很多情况下使用来查明复选框是否已选中或未选中。其背后的概念是将复选框状态保存在变量中,即何时打开、关闭。
我希望这个逻辑可以用来解决你的问题。
I found out a crazy solution for dealing with this issue of checkbox not checked or checked
here is my algorithm...
create a global variable lets say var check_holder
check_holder has 3 states
If the checkbox is clicked,
The code above can be used in many situation to find out if a checkbox has been checked or not checked. The concept behind it is to save the checkbox states in a variable, ie when it is on,off.
i Hope the logic can be used to solve your problem.
我会 使用
.change()
和this.checked< /code>:
--
关于使用
this.checked
Andy E 写了一篇关于我们如何过度使用 jQuery 的精彩文章:利用 jQuery 的强大功能来访问元素的属性。本文专门讨论了
.attr("id")
的使用,但在#checkbox
是元素的问题与
$(...).attr('checked')
相同(甚至$(... ).is(':checked')
) 与this.checked
。I would use
.change()
andthis.checked
:--
On using
this.checked
Andy E has done a great write-up on how we tend to overuse jQuery: Utilizing the awesome power of jQuery to access properties of an element. The article specifically treats the use of
.attr("id")
but in the case that#checkbox
is an<input type="checkbox" />
element the issue is the same for$(...).attr('checked')
(or even$(...).is(':checked')
) vs.this.checked
.