上传图片(阿贾克斯提交)

Posted PHP`reader

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传图片(阿贾克斯提交)相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <title></title>
 <script src="jquery.js"></script>
</head>
<body>

   <form action="1.php" method="post" enctype="multipart/form-data" target="mywin">
     <input type="file" name="up_file">
     <!-- <input type="submit" name="btn" value="上传">
     <input type="hidden" name="path" value=""> -->
   </form>
   <div>
                <img   id="imgid" style="width: 100px;height: 100px; display: none;" >

            </div>
     <iframe   frameborder="1"  name="mywin" style="display:none;" src=""></iframe>
   
</body>
<script>
    $(document).ready(function(){
      $(":file").change(function(){
       $("form").submit();
      });
    });
</script>
<script>
 
</script>
</html>

 

 

 

 

<?php
 header(‘Content-type:text/html;charset="utf8"‘);
 // session_start();
      if(!is_dir(‘uploads‘)){
        mkdir(‘uploads‘);
      }
      $src=$_FILES[‘up_file‘][‘tmp_name‘];
      $file=$_FILES[‘up_file‘][‘name‘];
      $a=explode(‘.‘,$file);
      $ext=array_pop($a);
      $rand=time().mt_rand().‘.‘.$ext;
      $dst="uploads/{$rand}";
      if($_FILES[‘up_file‘][‘error‘]===0){
          if(move_uploaded_file($src,$dst)){
            
               echo "<script>imgid=window.top.document.getElementById(‘imgid‘);
              imgid.src=‘{$dst}‘</script>";
          }else{
              echo "头像未上传成功";
          }
      }

    

以上是关于上传图片(阿贾克斯提交)的主要内容,如果未能解决你的问题,请参考以下文章

layui框架实现多图片手动上传和随表单提交方法

app中 模拟表单上传图片

php后台商品添加,需要两个表单,一个用于提交上传图片,一个用于提交商品数据到数据库。

图片上传 - 在点击提交之前在网页上显示图片

Rails Cloudinary 提交后直接上传图片

iOS 提交form表单,上传图片