良い一日。
<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 で class form-group
add classを使用してフォーカスを失った場合 ( ) を希望しますadd
が、1 つだけです。
たとえば。クラス要素で入力id=inputError
がフォーカスを失った場合は、クラス<div class="form-group has-error">
を追加しadd
ます。 <div class="form-group has-error add">
form-group
そして、class add class "add"を持つ1つの要素だけでそれをしたいと思います。
私はコードを使用します:
$(".form-control").focusout(function(){
})
しかし、クラスで親divを取得する方法がわかりませんform-group
...
これはどうやって作るの?