首页 > 代码库 > html+php实现无刷新上传文件

html+php实现无刷新上传文件

亲测好用!!!代码示例是上传excel

html代码

<form id="uploadForm" class="picForm" action="finance.php?act=excel" method="post" enctype="multipart/form-data" target="hiddenIFrame">
<input type="file" class="excel" name="excel" style="border-radius: 5px;">
</form>
<iframe id=‘hiddenIFrame‘ name=‘hiddenIFrame‘ style="display:none;"></iframe>
js代码(jq)
$(function(){
$("#hiddenIFrame").load(function(){
var wnd = this.contentWindow;
var str = $(wnd.document.body).html();
callback(str);
});
})

function callback(info){
if(info==1)
{
alert(‘请选择正确的格式‘);
}
}
$(".excel").change(function(){
var _this=$(this);
$("#uploadForm").submit();
})
php代码
这边的代码就是简单的move_upload_file
 

html+php实现无刷新上传文件