PHP+AjaxForm異步帶進度條上傳文件實例代碼_PHP實例_積木網(gimoo.net) var artID=\'390006\',artSID=\'15\',artBBS=\'2\'; jQuery(function($){ $(\'pre\').each(function(i){ if ($(this).find(\'code\').length==0) $(th">

成人精品一区二区三区中文字幕-成人精品一区二区三区-成人精品一级毛片-成人精品亚洲-日本在线视频一区二区-日本在线视频免费

導航首頁 ? 技術教程 ? PHP+AjaxForm異步帶進度條上傳文件實例代碼
全站頭部文字 我要出現在這里
PHP+AjaxForm異步帶進度條上傳文件實例代碼 763 2023-12-10   

在使用ajaxForm方法之前,首先需要安裝form.js的插件,網上有;

一、首先說用法,ajaxForm可以接收0或1個參數,該參數可以是一個變量、一個對象或回調函數,這個對象主要有以下參數:

var object= {
           url:url,      //form提交數據的地址
       type:type,    //form提交的方式(method:post/get)
       target:target,  //服務器返回的響應數據顯示的元素(Id)號
           beforeSerialize:function(){} //序列化提交數據之前的回調函數
       beforeSubmit:function(){},  //提交前執行的回調函數
       success:function(){},      //提交成功后執行的回調函數
           error:function(){},       //提交失敗執行的函數
       dataType:null,       //服務器返回數據類型
       clearForm:true,       //提交成功后是否清空表單中的字段值
       restForm:true,       //提交成功后是否重置表單中的字段值,即恢復到頁面加載時的狀態
       timeout:6000         //設置請求時間,超過該時間后,自動退出請求,單位(毫秒)?! ?

}
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異步帶進度條上傳文件實例_php</title>
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<meta name="keywords" content="php,ajax異步上傳文件,ajax,異步加載,進度條,php,ajax上傳進度條" />
<meta name="description" content="這篇文章主要介紹了PHP+Ajax異步帶進度條上傳文件實例代碼。" />
<默認的進度條樣式文件
添加一個帶有 class .progress 的 <div>。
接著,在上面的 <div> 內,添加一個帶有 class .progress-bar 的空的 <div>。
添加一個帶有百分比表示的寬度的 style 屬性,例如 style="60%"; 表示進度條在 60% 的位置
-->
<link rel="stylesheet"  rel="external nofollow" > 
<script src="http://www.gimoo.net/t/1801/public/js/jquery.min.js"></script>
<script src="http://www.gimoo.net/t/1801/public/js/jquery.form.js"></script> <ajaxForm 提交form表單數據無刷新處理數據-->
</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='http://www.gimoo.net/t/1801/5a56b1e9eb328.html"+img+"'>");
     alert("上傳成功!");
   },
   error:function(){
     alert("上傳失敗");
   }
  });
  $(".progress").hide();
});
</script>
</html>

php上傳上傳類upload.class.php文件

<?php
date_default_timezone_set("PRC"); //設置時間區域
//上傳類
class upload{
 protected $file_path = "files"; //當前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){ //檢查文件上傳狀態
     echo json_encode($arr);
   }  
  }
 }
}
?>

總結

以上所述是小編給大家介紹的PHP+AjaxForm異步帶進度條上傳文件實例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對綠夏網網站的支持!


主站蜘蛛池模板: 公共安全教育第一课| 闵允渡李秀主演电影| 黑色纳粹电影完整版| 饥渴寡妇偷汉子视频| 阎良之窗| 我的吸血鬼学姐| 地火电视剧演员表| 加入青协的个人简历模板| 打男生军人光屁股的网站视频| 绿门背后| 娄际成| 《与凤行》演员表| 现代企业管理| karina hart| 郑丽身高一米几| cctv5+体育节目表| 大海歌词 张雨生| 郑中基的电影全部作品| 我这一辈子电影| 拔萝卜电影| 四大美人之貂蝉香港剧| 我有一个好朋友作文二年级| 罪孽天使| 罗中立的《父亲》详案| 吴朋奉| 魔法少女加奈| 邓伦是石家庄哪里的| call me by your name电影| 《重紫》电视剧| 新民歌| 天使之恋电影| 第一财经今日股市直播回放| 内衣视频| 赵健的读书日记| bangdream动漫| 性色视频在线| 肢体的诱惑电影| 金沙滩秦腔剧情介绍| 拔萝卜电影版| 宇宙刑事夏伊达| 赖小子电影|

!??!站長長期在線接?。?!

網站、小程序:定制開發/二次開發/仿制開發等

各種疑難雜癥解決/定制接口/定制采集等

站長微信:lxwl520520

站長QQ:1737366103