我有以下代碼:顯示圖像
function createImage(source) {
var pastedImage = new Image();
pastedImage.onload = function() {
}
pastedImage.src = source;
}
功能的createImage含有包含的圖像的源的源參數。之後,我創建了類Image的對象pastedImage,並在警告我正在獲取像[object HTMLImageElement]
這樣的html圖像元素對象。
我的問題是我如何使用該對象在我的html頁面中顯示圖像。我想在onload函數後顯示它。
在此先感謝。
非常感謝您.... definatly我正在尋找它...謝謝bro – Sky
@Kunal不用擔心很高興我能幫上忙,有一個好的! :) –