使用 jquery 将 attr 更改为 class
我有这个脚本:
$(document).ready(function() {
$('#Checkout1').addClass('disabled');
$('#voorwaarden').change(function() {
$('#Checkout1').attr('disabled', $(this).is(':checked') ? null : 'disabled');
});
});
该脚本没有更改 attr 禁用。但我怎样才能把这个脚本改成这个东西。当您更改#voorwaarden 时。然后从 #checkout1 中删除禁用的类。当我接下来更改#voorwaarden 时。而不是增加阶级并走得越来越远。 #voorwaarden 是一个复选框。
谢谢!
I have this script:
$(document).ready(function() {
$('#Checkout1').addClass('disabled');
$('#voorwaarden').change(function() {
$('#Checkout1').attr('disabled', $(this).is(':checked') ? null : 'disabled');
});
});
The script is no change the attr disabled. But how can i change this script to this thing. When you change the #voorwaarden. Than remove the class diabled from #checkout1. And when i changed next the #voorwaarden. Than add class and going furter and furter. #voorwaarden is an checkbox.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用
toggleClass()
注意: http:// api.jquery.com/toggleClass/
编辑:如果您想切换“禁用”属性,
Simply do with
toggleClass()
Note: http://api.jquery.com/toggleClass/
Edited: In case that you want to toggle 'disabled' property,
我不完全确定我理解你的问题,但如果你的目标是在未选中复选框时添加“禁用”类,并在选中复选框时将其删除,那么
: jquery.com/toggleClass/" rel="nofollow">
toggleClass
如果标志为 true,则添加该类;如果标志为 false,则删除该类。I'm not entirely sure I understand your question, but if your goal is to add the class "disabled" when the checkbox is not checked, and remove it when it is, then:
toggleClass
will add the class if the flag is true, or remove it if the flag is false.