我构建的 JS/Ajax 函数无需单击按钮或刷新页面即可提交。该函数获取输入字段的值并用 php 回显结果。但是每次回显一个变量时,下一个变量都会擦除前一个变量的值。如何避免这种情况?例子
JS
<script>
$(document).ready(function() {
var timer = null;
var dataString;
function submitForm(){
$.ajax({ type: "POST",
url: "index.php",
data: dataString,
success: function(result){
$('#special').html('<p>' + $('#resultval', result).html() + '</p>');
}
});
return false; }
$('#contact_name').on('keyup', function() {
clearTimeout(timer);
timer = setTimeout(submitForm, 050);
var name = $("#contact_name").val();
dataString = 'name='+ name;
});
$('#email').on('keyup', function() {
clearTimeout(timer);
timer = setTimeout(submitForm, 050);
var name = $("#email").val();
dataString = 'name='+ name;
});
$('#phone').on('keyup', function() {
clearTimeout(timer);
timer = setTimeout(submitForm, 050);
var name = $("#phone").val();
dataString = 'name='+ name;
});
$('#address').on('keyup', function() {
clearTimeout(timer);
timer = setTimeout(submitForm, 050);
var name = $("#address").val();
dataString = 'name='+ name;
});
$('#website').on('keyup', function() {
clearTimeout(timer);
timer = setTimeout(submitForm, 050);
var name = $("#website").val();
dataString = 'name='+ name;
});
});
</script>
HTML/PHP
<form action="" method="post" enctype="multipart/form-data" id="contact_form" name="form4">
<div class="row">
<div class="label">Contact Name *</div> <!-- end .label -->
<div class="input">
<input type="text" id="contact_name" class="detail" name="contact_name" value="<?php $contact_name ?>" />
<div id="special"><span id="resultval"></span></div>
</div><!-- end .input-->
</div><!-- end .row -->
<div class="row">
<div class="label">Email Address *</div> <!-- end .label -->
<div class="input">
<input type="text" id="email" class="detail" name="email" value="<?php $email ?>" />
<div id="special"><span id="resultval"></span></div>
</div><!-- end .input-->
</div><!-- end .row -->
</form>