找遍资料得出结果:不能
不过同时也找到了解决办法,就是用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 method="POST" action="../post.php" target="post_frame" enctype="multipart/form-data">
<iframe mce_style="display:none;"></iframe>
<input type="file" />
<input type="text"/>
<input type="submit" value="完成以上修改" />
</form>
</body>
</html>
复制代码 代码如下:
echo ("<script type=/"text/javascript/">parent.callback('操作成功 ! ')</ script>");
新闻热点
疑难解答
图片精选