gpt4 book ai didi

javascript - 通过删除属性启用和禁用按钮

转载 作者:行者123 更新时间:2023-11-29 10:07:22 24 4
gpt4 key购买 nike

<分区>

我想编写一个程序,通过 remove attribute jQuery 代码启用和禁用复选框上的按钮。

我试过了,但没用。

 $(document).ready(function() {
$('#myCheckBox').on('change', function() {
var x = $(this).attr('value');
if (x == 'on') {
$('#myButton').removeAttr('disabled');
} else if (x == undefined) {
$('#myButton').attr('disabled');
}
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<label for="myCheckBox">
I agree with terms and conditions
<input type="checkbox" id="myCheckBox" />
</label>
<br />
<br />
<input type="button" id="myButton" value="Submit" disabled />

我是 jQuery 的初学者,如有任何疑问,请在下方评论。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com