加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ajax上传图片与预览图片demo

发布时间:2020-12-16 01:30:11 所属栏目:百科 来源:网络整理
导读:!doctype htmlhtml lang="en"head meta charset="UTF-8" meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0" meta http-equiv="X-UA-Compatible" content="ie=edge" titleajax Upl
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>ajax Upload demo</title>
</head>
<body>

<form id="uploadForm" enctype="multipart/form-data">
    <input id="file" type="file" name="file"/>
    <button id="upload" type="button">upload</button>
</form>
<img id="pre" src="#" width="800" height="600"/>
<button id="show" >show</button>
</body>
<script src="http://cdn.bootcss.com/jquery/3.1.0/jquery.js"></script>
<script>
    $('#upload').click(upload);
    $('#file').change(function(){
                var reader = new FileReader();
        reader.readAsDataURL($('#file')[0].files[0]);
        reader.onload = function (e) {
            $('#pre').attr('src',this.result)
        }
    })
    function upload() {
        var form = new FormData();
        form.append("file",$('#file')[0].files[0]);
        form.append("name","jdlsajdlkas");
        form.append("order","1");

        var settings = {
            "async": true,"crossDomain": true,"url": "/attachments/","method": "POST","processData": false,"contentType": false,"mimeType": "multipart/form-data","data": form
        }

        $.ajax(settings).done(function (response) {
            console.log(response);
        });
    }
</script>
</html>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读