图像预览提交后如何删除?

时间:2019-06-19 17:58:55

标签: javascript jquery html

预览图像并提交后,图像仍然保留在其中,并添加了消息注释。我希望图像预览在提交后自动删除。

这是我的html代码:

 function showPreview(objFileInput) {
      if (objFileInput.files && objFileInput.files[0]) {
        var fileReader = new FileReader();
        fileReader.onload = function (e) {
        $("#targetLayer").html('<img src="'+e.target.result+'" width="200px" height="200px" class="upload-preview" />');
        $("#targetLayer").css('opacity','0.7');
        $(".icon-choose-image").css('opacity','0.5');
        }
      fileReader.readAsDataURL(objFileInput.files[0]);
      }
    }

    $("#image_name").change(function(e) {
      showPreview(this);
    });  
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="form-group" id="targetOuter">
      <div id="targetLayer"></div>
      <img src="photo.png"  class="icon-choose-image"  />
      <div class="icon-choose-image">
      <input name="image_name" id="image_name" type="file" class="inputFile"  />
      </div>
    </div>

1 个答案:

答案 0 :(得分:1)

//Target the image element and remove 
$(.icon-choose-image).remove();