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条)

报告相同问题?

悬赏问题

  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料