我正在使用benjaminkeen的validation.php验证表单。问题是我有stage3.php,根据选择加载两种不同的形式。我在stage3.php中有开始标记和结束标记。 jquery加载了两种不同的表单,这些文件只是.php文件中的表单字段。 我还有stage3.php中的所有验证规则。但是一旦表单提交,选择表单就会消失。
<?php
$errors = array(); // set the errors array to empty, by default
$fields = array(); // stores the field values
$success_message = "";
if (isset($_POST['submit']))
{
//rules
...........
$("#segment2").change(function() {
var file = $("#segment2").val();
var pars = {
countries : '<?php echo $json->encode($country);?>',
price : '<?php echo $_POST['price']; ?>',
descr : '<?php echo $_POST['descr']; ?>'
};
if((file != '') && (submitcount == 0))
{
$.post(file, pars, function(data) {
$('#selectedform').html(data).show(300);
});
// submitcount++;
} else {
var file = "blank.htm";
$('#selectedform').load(file).hide();
}
});
<form name="formTest" method="POST" action="">
<select name="segment2" id="segment2">
<option value="">Segment jQuery</option>
<option value="luxury.php">luxury</option>
<option value="nonluxury.php">nonluxury</option>
</select>
<div id="selectedform" style="display:none;"></div>
<div id="systemWorking" style="display:none"><img src="imgs/ajax-loader.gif" alt="Laden" /></div>
</form>