파일업로드
-
[Jquery] Input file 업로드Jquery/function 2021. 5. 20. 17:30
$(document).on('change', "#inputFile", function(){ ext = $(this).val().split('.').pop().toLowerCase(); if($.inArray(ext, ['gif', 'png', 'jpg', 'jpeg']) == -1) { resetFormElement($(this)); window.alert('이미지 파일이 아닙니다! (gif, png, jpg, jpeg 만 업로드 가능)'); } else { file = $('#inputFile').prop("files")[0]; blobURL = window.URL.createObjectURL(file); $('#image_show img').attr('src', blobURL); $('#image_s..