我有一个选择和一个按钮验证,我想当我没有在选择中选择一个值并且当我单击验证时,给出一条错误消息“选择一个信使”,请帮助。 我的选择
<div class="form-group">
<label>Select Chantier:</label>
{!! Form::select('chantier_id',[''=>'--- Select Chantier ---']+$chantiers,null,['class'=>'form-control'],['id'=>'select1']) !!}
<span id='error'>Input can not blank</span>
</div>
代码jQuery查询消息错误
$(document).ready(function() {
$("#hide").click(function() {
let value = $('#select1').val();
if (value == "--- Select Chantier ---") {
$('#error').show();
} else {
$("#form1").hide();
$("#form2").show();
$('.input2').val(value);
}
});
});