PHP+AjaxForm異步帶進(jìn)度條上傳文件實(shí)例代碼
在使用ajaxForm方法之前,首先需要安裝form.js的插件,網(wǎng)上有;
一、首先說用法,ajaxForm可以接收0或1個參數(shù),該參數(shù)可以是一個變量、一個對象或回調(diào)函數(shù),這個對象主要有以下參數(shù):
var object= {
url:url, //form提交數(shù)據(jù)的地址
type:type, //form提交的方式(method:post/get)
target:target, //服務(wù)器返回的響應(yīng)數(shù)據(jù)顯示的元素(Id)號
beforeSerialize:function(){} //序列化提交數(shù)據(jù)之前的回調(diào)函數(shù)
beforeSubmit:function(){}, //提交前執(zhí)行的回調(diào)函數(shù)
success:function(){}, //提交成功后執(zhí)行的回調(diào)函數(shù)
error:function(){}, //提交失敗執(zhí)行的函數(shù)
dataType:null, //服務(wù)器返回數(shù)據(jù)類型
clearForm:true, //提交成功后是否清空表單中的字段值
restForm:true, //提交成功后是否重置表單中的字段值,即恢復(fù)到頁面加載時的狀態(tài)
timeout:6000 //設(shè)置請求時間,超過該時間后,自動退出請求,單位(毫秒)。
}
ajaxForm js的code
$(function(){
$("form").ajaxForm(object);
})
實(shí)例具體代碼code
htmlcode
<!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="X-UA-Compatible" content="IE=7" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="ROBOTS" content="NOODP">
<title>PHP+Ajax異步帶進(jìn)度條上傳文件實(shí)例_php</title>
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<meta name="keywords" content="php,ajax異步上傳文件,ajax,異步加載,進(jìn)度條,php,ajax上傳進(jìn)度條" />
<meta name="description" content="這篇文章主要介紹了PHP+Ajax異步帶進(jìn)度條上傳文件實(shí)例代碼。" />
<!--默認(rèn)的進(jìn)度條樣式文件
添加一個帶有 class .progress 的 <div>。
接著,在上面的 <div> 內(nèi),添加一個帶有 class .progress-bar 的空的 <div>。
添加一個帶有百分比表示的寬度的 style 屬性,例如 style="60%"; 表示進(jìn)度條在 60% 的位置
-->
<link rel="stylesheet" href="public/css/bootstrap.min.css" rel="external nofollow" >
<script src="public/js/jquery.min.js"></script>
<script src="public/js/jquery.form.js"></script> <!--ajaxForm 提交form表單數(shù)據(jù)無刷新處理數(shù)據(jù)-->
</head>
<body>
<div class="uk-container uk-container-center">
<div class="pk-system-messages"></div>
<h1 class="uk-h2 uk-text-center" style="margin-top:-100px;">文件上傳</h1>
<div class="pk-system-messages"></div>
<div class="container-main">
<h1>文件上傳</h1>
<p>這里只是一個ajax+php+ajaxForm上傳文件word文檔例子</p>
<form id='myupload' action='upload.php' method='post' enctype='multipart/form-data'>
<label for="file">選擇上傳文件名:</label>
<input type="file" name="mypic" id="file"><br>
<input type="submit" name="upload" class="btn btn-success" value="upload">
<input type='text' name="list" value="555"/>
</form>
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 0%;color:red;">
<span class="sr-only">10% Complete</span>
</div>
</div>
<div class="files"></div>
<div class="showimg"></div>
</div>
</div>
</body>
<script type="text/javascript">
$(function () {
$("#myupload").ajaxForm({
dataType:'json',
beforeSend:function(){
$(".progress").show();
},
uploadProgress:function(event,position,total,percentComplete){
var percentVal = percentComplete + '%';
$(".progress-bar").width(percentComplete + '%');
$(".progress-bar").html(percentVal);
$(".sr-only").html(percentComplete + '%');
},
success:function(data){
$(".progress").hide();
if(data.error == "empty_name"){
alert("文件上傳非法,上傳失敗!");
exit();
};
if(data.error == "large"){
alert("圖片上傳不能大于2M,上傳失敗!");
exit();
};
if(data.error == "format"){
alert("圖片格式錯誤,上傳失敗");
exit();
};
//$(".files").html("<b>"+data.name+"("+data.size+"k)</b> <span class='delimg' rel='"+data.pic+"'>刪除</span>");
$(".files").html("文件名: "+data.name+"<span class='delimg' rel='"+data.pic+"'> del </span>大?。?+data.size);
var img = "files/"+data.pic;
$(".showimg").html("<img src='"+img+"'>");
alert("上傳成功!");
},
error:function(){
alert("上傳失敗");
}
});
$(".progress").hide();
});
</script>
</html>
php上傳上傳類upload.class.php文件
<?php
date_default_timezone_set("PRC"); //設(shè)置時間區(qū)域
//上傳類
class upload{
protected $file_path = "files"; //當(dāng)前files存儲文件夾
protected $file_size = 5120000; //5M 用戶上傳
/**
*檢測文件是否為空
*/
public function check_file($get_file)
{
if (empty($get_file))
{
$type = "check_file";
$arr = array('error'=>'empty_name','type'=>$type);
echo json_encode($arr);
exit();
}
return true;
}
/**
*檢測文件類型
*/
public function check_type($get_type)
{
if (( $get_type == ".docx" ) || ( $get_type == ".doc" )) {
//這里只是判斷上傳word文檔可以自己添加
}else{
$type = "check_type";
$arr = array('error'=>'format','type'=>$type);
echo json_encode($arr);
exit();
}
return true;
}
/**
*檢測文件大小
*/
public function check_size($get_file)
{
if ( $get_file != "" ) {
if ( $get_file > $this->file_size ) {
$arr = array('error'=>'large');
echo json_encode($arr);
exit();
}
}else{
return false;
exit();
}
return true;
}
/**
*文件保存
*/
public function save_file($file_type,$file_tmp_name)
{
$rand = rand(1000, 9999);
$pics =date('YmdHis') . $rand . $file_type;
$path = $this->file_path."/".$pics;
$result = move_uploaded_file($file_tmp_name, $path);
if($result){
return $pics;
}else{
return false;
exit();
}
}
}
?>
ajax提交php處理文件upload.php
<?php
include("upload.class.php");
$up_obj = new upload();
//獲取上傳文件名
$get_fileName = $_FILES['mypic']['name'];
$get_fileSize = $_FILES['mypic']['size'];
$get_TmpFiles = $_FILES['mypic']['tmp_name'];
$get_fileType = strstr($get_fileName, '.');
$check_result = $up_obj->check_file($get_fileName);
if($check_result){
$result_type = $up_obj->check_type($get_fileType);//檢查文件類型
if($result_type){
$result_size = $up_obj->check_size($get_fileSize);//檢查文件大小
if($result_size){
$pics = $up_obj->save_file($get_fileType,$get_TmpFiles); //文件上傳保存
$size = round($get_fileSize/1024,2);
$arr = array(
'name' => $get_fileName,
'pic' => $pics,
'size'=> $size,
'error' => 2,
'list' =>$_POST['list']
);
if($pics){ //檢查文件上傳狀態(tài)
echo json_encode($arr);
}
}
}
}
?>
總結(jié)
以上所述是小編給大家介紹的PHP+AjaxForm異步帶進(jìn)度條上傳文件實(shí)例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
- php+ajax實(shí)現(xiàn)圖片文件上傳功能實(shí)例
- 使用ajaxfileupload.js實(shí)現(xiàn)ajax上傳文件php版
- php+ajax實(shí)現(xiàn)異步上傳文件或圖片功能
- File, FileReader 和 Ajax 文件上傳實(shí)例分析(php)
- PHP+Ajax異步帶進(jìn)度條上傳文件實(shí)例
- PHP結(jié)合jQuery插件ajaxFileUpload實(shí)現(xiàn)異步上傳文件實(shí)例
- php中通過Ajax如何實(shí)現(xiàn)異步文件上傳的代碼實(shí)例
- php+ajax實(shí)現(xiàn)無刷新文件上傳功能(ajaxuploadfile)
- PHP+Ajax實(shí)現(xiàn)上傳文件進(jìn)度條動態(tài)顯示進(jìn)度功能
- php+ajax 文件上傳代碼實(shí)例
- PHP使用HTML5 FileApi實(shí)現(xiàn)Ajax上傳文件功能示例
相關(guān)文章
用Laravel輕松處理千萬級數(shù)據(jù)的方法實(shí)現(xiàn)
這篇文章主要介紹了用Laravel輕松處理千萬級數(shù)據(jù)的方法實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-12-12
tp5修改(實(shí)現(xiàn)即點(diǎn)即改)
今天小編就為大家分享一篇tp5修改(實(shí)現(xiàn)即點(diǎn)即改),具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10
PHP設(shè)計模式之單例模式入門與應(yīng)用詳解
這篇文章主要介紹了PHP設(shè)計模式之單例模式入門與應(yīng)用,結(jié)合實(shí)例形式詳細(xì)分析了PHP單例模式的具體概念、原理、使用方法及相關(guān)操作注意事項,需要的朋友可以參考下2019-12-12
支付寶支付開發(fā)——當(dāng)面付條碼支付和掃碼支付實(shí)例
這篇文章主要介紹了支付寶支付開發(fā)——當(dāng)面付條碼支付和掃碼支付實(shí)例,具有一定的參考價值,有需要的可以了解一下。2016-11-11

