我正在尝试验证一个小表单,其中我有 3 个字段,其中一个我使用 php 加载了一个选择字段,所有这些都工作正常,现在当尝试为此字段使用 select2 时,jquery-validate 似乎没有考虑到它,并且搜索了解决方案,但没有找到适合我的代码 js 中的验证规则的解决方案, 我该如何解决这个问题?
我已经在操作系统中查看了与此相关的几个问题,试图使其适应我的代码,但它对我不起作用。我需要知道如何解决这个问题
<form id="form-reservation" action="<?php echo base_url();?>reservation/save" method="POST">
<div class="form-group">
<label class="form-label">customer</label>
<div class="form-group">
<select class="select2" id="cus" name="cus">
<option>Select customer</option>
<?php
foreach ($get as $id => $name)
echo '<option value="',$id,'">'.$name.'</option>';
?>
</select>
</div>
</div>
<div class="form-group">
<label class="form-label">Monthly amount</label>
<div class="input-group">
<input type="number" class="form-control" id="monthly" name="monthly" placeholder="0.00">
<div class="input-group-addon">$</div>
</div>
</div>
<div class="form-group">
<label class="form-label">total amount</label>
<div class="input-group">
<input type="number" class="form-control" id="total" name="total" placeholder="0.00">
<div class="input-group-addon">$</div>
</div>
</div>
<div class="form-actions">
<button type="submit" class="btn btn-squared btn-info margin-inline">submit</button>
</div>
</form>
我的 JS
$('document').ready(function(){
$(".select2").select2();
$('#form-reservation').validate({
rules: {
cus:{
required: true
},
monthly:{
number: true,
required: true
},
total:{
number: true,
required: true
}
},
highlight: function (input) {
$(input).parents('.form-group').addClass('has-danger');
},
unhighlight: function (input) {
$(input).parents('.form-group').removeClass('has-danger');
},
errorPlacement: function (error, element) {
$(element).parents('.form-group').append(error);
},
submitHandler : function(_form){
$.ajax({
url: form.attr('action'),
type: form.attr('method'),
data: form.serialize(),
dataType: 'json',
success:function(response){
}
})
return false;
}
});});
是的...这是你代码中的一个问题,改变
value="',$id,'" to
value="'.$id.'"