JSコードの入力フィールドをどのように参照する必要がありますか?名前で入力フィールドを参照する方法
input[name="email"]
右終了しません。
$("#reg-form").find('input[name="email"]').parent("").addClass('has-error');
<div class="form-group">
<label for="email">EMAIL</label><span> *</span>
<input type="text" class="form-control" name="user_details[email]">
<div class="help-block"></div>
<!-- errors will go here -->
</div>
あなたは電子メール – Alex
@AlexThomasという名前の入力持っていけない - 私は持っているが - user_details [email] – roi
@rol - いいえ - 名前が1つあります - user_details [email] – Alex