我不能將圖像對象與其他HTML元素放置在DOM上。例如:不能放置圖像對象與其他HTML元素
$('#preview> tbody:last')[0].appendChild('<tr><td>' + image + '</td></tr>');
這是行不通的。什麼都沒有出現。但是,當我僅使用圖像時,它會顯示在屏幕上:
$('#preview> tbody:last')[0].appendChild(image);
爲什麼不能正常工作?在我看來,它應該以任何方式工作。我嘗試使用只是append
,但沒有任何工作 - 圖像本身或與其他元素。
全碼比特
var reader = new FileReader();
reader.onload = function (event) {
var image = new Image();
image.src = event.target.result;
image.width = 50;
$('#preview> tbody:last')[0].appendChild(image);
};
爲什麼你不使用jQuery! – epascarello