將照片插入到請告訴我,如何將照片插入<img>
,當我打開 <input type = "file">
並選擇任何文件? 我該如何使用JS/JQuery?通過打開<input type =「file」>
0
A
回答
0
使用 '的FileReader' 對象:
$("#yourinput").change(function() {
var file = this.files[0];
var reader = new FileReader();
reader.onload = function (e) {
$("#yourimg").attr("src", e.target.result);
}
reader.readAsDataURL(file);
});
+0
謝謝!!!!!!! – Spiderman5
+0
歡迎您;) – MBN
相關問題
- 1. <input type =「file」/>
- 2. 定製<input type =「file」>?
- 3. 清除<input type = file>
- 4. <input type =「file」> EMPTY
- 5. HTML <input type =「text」... as <input type =「file」
- 6. Force <input type =「file」>在手機上打開圖庫
- 7. 如何通過<input type =「file」>傳遞附加信息?
- 8. <input type =「file」>通過擴展限制可選文件
- 9. 不使用<input type =「file」/>
- 10. <input type =「file」/>的幫助器
- 11. 覆蓋<input type =「file」>值屬性
- 12. 回顧從<input type =「file」>
- 13. 當<input type =「file」>形式爲
- 14. 問題與<input type =「file」>
- 15. 我可以使用<input type =「text」>來模擬<input type =「file」>嗎?
- 16. 如何在<input type =「text」>標籤內放置<input type =「file」>?
- 17. HTML 5鏈接/屏蔽<input type ='file'>至<a>
- 18. <input type =「file」>自己打開文件資源管理器嗎?
- 19. input [type = file] validation
- 20. <input type =「submit」/>和<input type =「text」/>
- 21. <input type ='button'/>和<input type ='submit'/>之間的區別
- 22. 從<input type ='file'>獲取值>返回空字符串
- 23. 如何從<input type =「file」>獲取UNC路徑>
- 24. 傳遞信息從<input type =「file」id =「theFile」/>通過另一個按鈕onclick?
- 25. html-input type =「file」multiple
- 26. <button>與<INPUT TYPE =「圖像」>
- 27. 增加<input type =「text」>
- 28. 驗證<input type =「date」>
- 29. 更改<input type =「submit」>
- 30. 爲<input type ='submit'>
[預覽它被上傳之前的圖像(的可能的複製http://stackoverflow.com/questions/4459379/preview-an-image-before-it - 已上傳) – Aboodz
[將圖片加載到從](http://stackoverflow.com/questions/3814231/loading-an-image-to-a-img-from-input-file) –