gpt4 book ai didi

jquery - 使用 Jquery 一次性禁用所有复选框、所有下拉列表和文本框

转载 作者:行者123 更新时间:2023-12-01 06:30:08 24 4
gpt4 key购买 nike

我想一次性禁用所有复选框、所有下拉列表和文本框(按钮除外),这些都存在于我的页面中。

以下代码无法运行,请更正。

$('checkbox').filter('type=[button]').attr("disabled", "disabled");
$('input').filter('type=[button]').attr("disabled", "disabled");
$('select').filter('type=[button]').attr("disabled", "disabled");

注意:我不想禁用页面中的按钮。

最佳答案

假设您使用的是 jQuery v1.6.*,您应该使用 .prop("disabled", true)

$('input[type="text"], input[type="checkbox"], select').prop("disabled", true);

关于jquery - 使用 Jquery 一次性禁用所有复选框、所有下拉列表和文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7090300/

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