Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 jQuery 禁用页面中的所有控件:
$("form").attr("disabled", "disabled");
但我仍然可以在每个输入控件上键入文本。
我该如何解决?谢谢你。
试试这个:
$("form *").prop("disabled", true);
如果要禁用all the input types like text, checkbox, radio etc,可以在表单中使用输入。
all the input types like text, checkbox, radio etc
$("form input").attr("disabled", "disabled");