0
我不知道它不預覽圖像。我只想打開1張圖片,預覽1張圖片並將其刪除。我不知道什麼錯誤?所以我解決不了,我的編程能力不好,請幫幫我,鏈接http://jsfiddle.net/ittvn/h145xey9/19/非常感謝。如何在上傳前刪除預覽圖片?
P/S:我見鏈接http://jsfiddle.net/ERZVC/2/要參考
function handleFileSelect(input)
{
if (input.files && input.files[0])
{
var reader = new FileReader();
reader.onload = (function (e)
{
var span = document.createElement('span');
span.innerHTML = ['<img class="thumb" src="',e.target.result, '" title="', escape(e.name), '"/><span class="remove_img_preview"></span>'].join('');
document.getElementById('preview').insertBefore(span, null);
});
reader.readAsDataURL(input.files[0]);
}
}
工作示例'HTTP ://jsbin.com/uboqu3/1/edit?html,css,js,輸出' – 2014-11-22 07:28:07
感謝advuce,但我想讓它跟着它的例子 – 2014-11-22 07:30:44