有人可以向我展示使用 jquery 的教程,以便在不刷新页面的情况下显示成功的表单提交。 当邮件发送时,gmail会发生类似的情况,黄色叠加层会显示您的邮件已发送,然后淡出。
答案 0 :(得分:2)
<强> test.php的:强>
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="jsFile.js"></script>
<form action='_test.php' method='post' class='ajaxform'>
<input type='text' name='txt' value='Test Text'>
<input type='submit' value='submit'>
</form>
<div id='testDiv'></div>
<强> _test.php:强>
<?php
// Code here to deal with your form submitted data.
$arr = array( 'testDiv' => 'Form is successfully submitted.' );
echo json_encode( $arr );
?>
<强> jsFile.js:强>
jQuery(document).ready(function(){
jQuery('.ajaxform').submit( function() {
$.ajax({
url : $(this).attr('action'),
type : $(this).attr('method'),
dataType: 'json',
data : $(this).serialize(),
success : function( data ) {
for(var id in data) {
jQuery('#' + id).html( data[id] );
}
}
});
return false;
});
});
或:
您可以使用jQuery Form Plugin