douzepao0281 2015-10-24 01:46
浏览 18
已采纳

jQuery中的文件上传问题

here is an upload button, from which user can choose the file

Basically what I want to do is whenever user chooses an image from that, it should display it at the place where that "trees" image is.

I'm stuck, really need some help.

here is the code

<div class="user-editable-div">   
        <div class="image-div" id="image_div"><img src="images/image.jpg" id="bg_image" /></div>
        <span class="upload-btn">UPLOAD IMAGE</span>
        <input type="file" id="uploader" />
        <div class="content-div">
            <h1 contenteditable="true">USER EDITABLE</h1>
            <p contenteditable="true">All elements on this page are user editable. You can edit them by simply clicking or by clicking on the edit button next to the element.</p>
    </div>
</div>

when the user chooses a file from "#uploader" it should display the image in "#bg_image"

</div>
  • 写回答

2条回答 默认 最新

  • douzhouqin6223 2015-10-24 05:11
    关注

    With this code when you try to upload image with use file controller at that time that image preview in bg_image element

       <div class="user-editable-div">  
            <div class="image-div" id="image_div"><img src="images/image.jpg" id="bg_image" /></div>
            <span class="upload-btn">UPLOAD IMAGE</span>
            <input type="file" id="uploader" onchange="readURL(this,this.id);"/>
            <div class="content-div">
                <h1 contenteditable="true">USER EDITABLE</h1>
                <p contenteditable="true">
                  All elements on this page are user editable. You can edit them by simply clicking or by clicking on the edit button next to the element.
                </p>
            </div>
        </div>
    
       <script>
    function readURL(input,ids)
    {
        if (input.files && input.files[0])
            {
                var reader = new FileReader();
                reader.onload = function (e)
                {
                    $('#bg_image').attr('src', e.target.result).width(650).height(375);
                };
                reader.readAsDataURL(input.files[0]);
            }
    }       
    </script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同