美好的一天。如何得到父母div
<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>
我想,當輸入失去與類form-group
添加類add
類元素的div焦點(focusout
),但只有一個。
例如,如果與id=inputError
輸入失去焦點類元素<div class="form-group has-error">
添加類add
:<div class="form-group has-error add">
而且我想,隨着類form-group
添加類只有一個元素「添加」。
我使用代碼:
$(".form-control").focusout(function(){
})
,但我不知道怎麼弄與form-group
類父格...
怎麼做呢?