http://jsfiddle.net/Nvt2h/如何使input.error適用於所有領域?
我正在使用此腳本將輸入字段的詳細信息發送到我的電子郵件。正如你所看到的那樣,如果輸入不正確,就會出現input.error,它將突出顯示紅色區域。但是,這隻適用於字段1和字段4.
如何在字段2和字段3上進行此項工作?
<form id="contact" name="contact" action="#" method="post">
<div class="form-group">
<label for="msg">Field1:
</label>
<input name="msg" type="msg" class="form-control" id="msg">
</div>
<div class="form-group">
<label for="id">Field2:</label>
<input name="id" type="msg" class="form-control" id="msg">
</div>
<div class="form-group">
<label for="pb">Field3:
</label>
<input name="pb" type="msg" class="form-control" id="pb">
</div>
<div class="form-group">
<label for="email">Field4:</label>
<input name="email" type="email" class="form-control" id="email">
</div>
<button id="send">Submit</button>
輸入1和2具有相同的id – Alex
@Alex是啊試圖添加,看看是否會幫助,但它沒有。如果他們有不同的ID,它不會工作。 – user3187469
你沒有對這些字段應用任何驗證。你想驗證什麼 –