gpt4 book ai didi

jquery - 如何使用 jQuery 禁用表单内的所有 <input>?

转载 作者:IT王子 更新时间:2023-10-29 03:24:28 26 4
gpt4 key购买 nike

<form id="target">
....
</form>

最佳答案

在旧版本中,您可以使用 attr .从 jQuery 1.6 开始,你应该使用 prop 相反:

$("#target :input").prop("disabled", true);

禁用“target”内的所有表单元素。参见 :input :

Matches all input, textarea, select and button elements.

如果您只想要 <input>元素:

$("#target input").prop("disabled", true);

关于jquery - 如何使用 jQuery 禁用表单内的所有 &lt;input&gt;?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1416900/

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