再会。
<div class="form-group has-success">
<label class="control-label" for="inputSuccess">Input with success</label>
<input type="text" class="form-control" id="inputSuccess">
</div>
<div class="form-group has-warning">
<label class="control-label" for="inputWarning">Input with warning</label>
<input type="text" class="form-control" id="inputWarning">
</div>
<div class="form-group has-error">
<label class="control-label" for="inputError">Input with error</label>
<input type="text" class="form-control" id="inputError">
</div>
我希望当输入focusout
在类元素 div 中失去焦点 () 时form-group
添加类add
,但只有一个。
例如。如果输入id=inputError
在类元素中失去焦点<div class="form-group has-error">
添加类add
: <div class="form-group has-error add">
而且我只希望在一个带有类form-group
添加类“添加”的元素中。
我使用代码:
$(".form-control").focusout(function(){
})
但我不知道如何让父 div 类form-group
...
这个怎么做?