在使用ajaxForm方法之前,首先需要安裝form.js的插件,網(wǎng)上有;
一、首先說用法,ajaxForm可以接收0或1個參數(shù),該參數(shù)可以是一個變量、一個對象或回調(diào)函數(shù),這個對象主要有以下參數(shù):
php;">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);})實例具體代碼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)度條上傳文件實例_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)度條上傳文件實例代碼。" /><!--默認(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文件
<?phpdate_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
<?phpinclude("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)度條上傳文件實例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對VeVb武林網(wǎng)網(wǎng)站的支持!
新聞熱點
疑難解答
圖片精選