ajax(iframe)无刷新提交表单、上传文件

前端之家收集整理的这篇文章主要介绍了ajax(iframe)无刷新提交表单、上传文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

转载自:http://www.jb51.net/article/25919.htm

用iframe的方式来提交表单,即实现无刷新提交表单又可以上传文件

一、HTML代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<Meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>无刷新提交表单</title> 
<script type="text/javascript"> 
<!-- 
function callback(str){ 
alert(str); 
} 

// --></script> 
</head> 
<body> 
<form name="form1" method="POST" action="../post.PHP" target="post_frame" enctype="multipart/form-data"> 
<iframe name='post_frame' id="post_frame" style="display:none;" mce_style="display:none;"></iframe> 
<input type="file" name="img" /> 
<input name="power[]" type="text"/> 
<input type="submit" value="完成以上修改" name="submit" /> 
</form> 
</body> 
</html> 

二、PHP代码(处理代码
这里的代码就想怎么写怎么写了,不过这个里执行完了刚才那个HMTL页面应该要有所表现,这时就要用到上个页面中的 function callback()了

echo ("<script type=\"text/javascript\">parent.callback('操作成功 ! ')</ script>"); 
原文链接:https://www.f2er.com/ajax/166765.html

猜你在找的Ajax相关文章