使用 Javascript 将禁用的属性添加到输入元素
2022-08-30 02:00:36
我有一个输入框,我希望它被禁用,同时隐藏它以避免在移植表单时出现问题。
到目前为止,我有以下代码来隐藏我的输入:
$(".shownextrow").click(function() {
$(this).closest("tr").next().show().find('.longboxsmall').hide();
});
这是因此被隐藏的输入:
<input class="longboxsmall" type="text" />
如何将禁用属性添加到输入中?