我想设置按钮上的CSS为不可点击/禁用。我有一个表单,当我点击“发送”按钮时,我想设置按钮为禁用/不可点击。我该怎么做?
这里是按钮:
.good-form > .actions a,
.theButton {
display: inline-block;
width: 540px;
margin: 20px 0 10px;
padding: 12px;
background-color: #b6adb4;
border-radius: 2px;
border: 0px;
text-align: center;
color: #fff !important;
text-decoration: none !important;
font-size: 16px;
font-family: 'Rubik', sans-serif;
}
下面是jquery:
首先,我尝试了这个:不管用!
$(".good-form > .actions a, .theButton").attr('disabled','disabled');
第二,我试了这个:不工作
$(".good-form > .actions a, .theButton").addClass('disabled');
或
$(".good-form > .actions a, .theButton").addClass("disabled");
6条答案
按热度按时间whitzsjs1#
我希望这是工作(
disabled
类添加成功):-现在添加CSS如下所示:
这也将工作(没有额外的CSS):-
dgenwo3n2#
尝试在你的元素中添加一个类,并提供下面的css:
超文本标记语言
CS
}
希望这对你有帮助:-)
lb3vh1jj3#
您要查找的代码是(假设按钮有ID)。
你可以在css中这样设计它:
9nvpjoqh4#
这是纯JS,HTML和CSS(我希望我帮助)
JSFIDDLE在这里:https://jsfiddle.net/HappyFone/swhbjer8/8/
wqlqzqxt5#
试试这个
1qczuiv06#
禁用按钮
禁用按钮的CSS