我是JavaScript新手,嘗試在新窗口中顯示圖像。 的代碼是 -在Firefox和Chrome中不顯示Javascript圖像
<script type="text/javascript">
function myfunc(){
var new_window = window.open();
var doc = new_window.document;
var image = document.createElement('img');
image.setAttribute('src','imagepath');
image.setAttribute('alt',"image");
doc.appendChild(image);
}
</script>
該圖像在顯示「ALT」文字沒有被顯示在Firefox和Chrome。雖然在IE中沒有顯示任何內容。請幫助。
我假設imagepath實際上指向一個圖像?而且你在某個時候調用了'myfunc()'? – Jivings
什麼是實際的圖像路徑?這可能是一個絕對/相對的問題。 – andrewb
@andrewb:imagepath可以是相對的也可以是絕對的。它是動態生成的。 –