博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
比较不错的图片上传插件
阅读量:6407 次
发布时间:2019-06-23

本文共 2001 字,大约阅读时间需要 6 分钟。

hot3.png

<!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="Content-Type" content="text/html; charset=utf-8" />
<title>上传</title>
<script typet="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://malsup.github.io/jquery.form.js" type="text/javascript"></script>
<script>

 function changimg(id){

       var img=$(id).val();
       var fileId,imgId,imgDspId,pre,imgval;
       fileId=id.id;
       pre=id.id.split('-')[0];
       imgId=pre+"-Img";
       imgDspId=pre+"-ImgDsp";
       formId=pre+"-Form";
       imgval=imgDspId+"-val";
       if($("#"+formId).length<=0){                 
            $("#"+fileId).wrap("<form id='"+formId+"' action='/recommend/upload ' method='post' enctype='multipart/form-data'></form>");
       }                   
        $("#"+formId+"").ajaxSubmit({
            dataType:  'json',
            async: false,
            beforeSend: function() {
            },
            success: function(result) {
                if(result.result=="10000"){
                  //  $('#erweiSrc').attr('src',result.dataRes.imgurl.imgrs);
                }else{

                   // createDialog(result.msg);

                }
            },
            error:function(xhr){
                //createDialog(result.msg);
            }
        });
    }
    
    //图片上传
    function changimg1(id){
        
       var img=$(id).val();
       var fileId,imgId,imgDspId,pre,imgval;
       fileId=id.id;
       pre=id.id.split('-')[0];
       imgId=pre+"-Img";
       imgDspId=pre+"-ImgDsp";
       formId=pre+"-Form";
       imgval=imgDspId+"-val";
      
       if($("#"+formId).length<=0){                 
            $("#"+fileId).wrap("<form id='"+formId+"' action='./upload.php' method='post' enctype='multipart/form-data'></form>");
       }                   
        $("#"+formId+"").ajaxSubmit({
            dataType:  'json',
            async: false,
            beforeSend: function() {
            },
            success: function(result) {
                if(result.state=="10000")
                {
                    $('.perphoto').attr('src',result.logoUrl);
                }
            },
            error:function(xhr){
                
                
            }
        });
    }

 

 

</script>

</head>

<span class="Fr gray"><img class="perphoto" src="http://head.cnfolimg.com/04/ea/35832/head.35832.96?84327" alt=""></span>
        头像</a>
<input οnchange="changimg1(this)" id="photo" class="photo" type="file"  name="file">

 

<body>

 

</body>
</html>

 

转载于:https://my.oschina.net/hongjiang/blog/1505394

你可能感兴趣的文章
File Operations in Android NDK(转)
查看>>
如何将kux格式的视频转换成我们常用的MP4格式
查看>>
[sublime系列文章] sublime text 3插件配置说明
查看>>
学习 PixiJS — 碰撞检测
查看>>
Vue 基础篇
查看>>
JavaScript:函数防抖与函数节流
查看>>
关于区间贪心的补全
查看>>
架构设计步骤
查看>>
自定义元素探秘及构建可复用组件最佳实践
查看>>
区块链是一个公共数据库,要放在一个块内
查看>>
小程序开发注意事项
查看>>
ECMAScript7规范中的instanceof操作符
查看>>
Hadoop HDFS原理分析
查看>>
【webpack4】基本配置和入门api
查看>>
Mac使用ssh公钥登录Linux
查看>>
【366天】跃迁之路——程序员高效学习方法论探索系列(实验阶段124-2018.02.06)...
查看>>
POJ3070-Fibonacci(矩阵快速幂)
查看>>
[vue插件]基于vue2.x的电商图片放大镜插件
查看>>
标准的组件结构
查看>>
vue——一个页面实现音乐播放器
查看>>