我陷入了蛋糕问题的问题。我想在模型中为两个字段添加验证规则,只有它们显示在前端。基本上他们是隐藏的。在更改选择框时,如果它们可见,我希望它们是必需的。 让我告诉你我的代码
<?php
echo $this->JqueryValidation->input('website',array(
'type' => 'text',
'label' => 'Website',
'div' => true,
'class' => 'form-control',
'id' => 'InputWebsite',
'placeholder' => 'Enter your website'
));
?>
<?php
echo $this->JqueryValidation->input('phone',array(
'type' => 'text',
'label' => 'Phone',
'div' => true,
'class' => 'form-control',
'id' => 'InputPhone',
'placeholder' => 'Enter your contact Number'
));
?>
<script>
$(document).ready(function() {
$('#InputPhone').parent('div').hide();
$('#InputWebsite').parent('div').hide();
$('#purpose').on('change', function(e) {
var optionVal = $(this).val();
if (optionVal == 'Schedule a call') {
$('#InputPhone').parent('div').show();
$('#InputWebsite').parent('div').show();
$("#InputMessage").hide();
$("#InputMessage").val('');
$(".textarea").hide();
} else {
$('#InputPhone').parent('div').hide();
$('#InputPhone').val('');
$('#InputWebsite').parent('div').hide();
$('#InputWebsite').val('');
$("#InputMessage").show();
$(".textarea").show();
}
});
});
</script>
有可能吗?
答案 0 :(得分:1)
在Model内的beforeValidate
函数中,检查select-box值是否是验证其他字段所需的值。然后,如果是这样,您需要将验证规则添加到$validate
数组(使用$this->validate += array(...new rule...);
)。