728x90
$("#file").on("change", function(e) {
var tmp = e.target.files[0];
var img = URL.createObjectURL(tmp);
$("#image").attr("src", img);
});
<input type="file" id="file">
<img src="" id="image">
대충 이런 식으로 하면 됩니다.
[sample]
반응형
'Programming > Javascript' 카테고리의 다른 글
Uncaught SyntaxError: Cannot use import statement outside a module (0) | 2022.01.27 |
---|---|
Vue.js is detected on this page. (0) | 2022.01.26 |
[jQuery]datepicker에서 여러 날짜 선택할 수 있게 (0) | 2021.12.02 |
url, query string 모듈 (0) | 2021.11.19 |
Hello World! (0) | 2021.11.19 |