2013-06-19 201 views
0

我想準備一個印刷文件,我喜歡加載一個小徽標。圖像在Mozilla Firefox和IE中加載正常,但不會在谷歌瀏覽器中加載。我不知道問題是什麼。有什麼建議麼 ? 這裏是我的代碼的一部分:圖像不加載谷歌瀏覽器

mywindow.document.write("<table border='solid gray 1px' style='text-align:center'>"); 
mywindow.document.write("<tr><td><img src='CSS/images/logosmall.jpg'></img><td><td> <span style='font-family:Tahoma'>HELLO</span></td></tr>"); 

mywindow.document.write("</body></html>"); 

     mywindow.print(); 
     mywindow.close(); 
+1

''可以''我不是說是你的問題的原因。 –

+0

我以前試過但沒有結果。不管怎麼說,還是要謝謝你。 –

+0

你的html像img標籤有問題,缺少td的結束標籤。我已經更新了html,請參閱我的回答 – Champ

回答

0

嘗試

var strHtml = "<table border='solid gray 1px' style='text-align:center'>"; 
    strHtml += "<tr><td><img src='CSS/images/logosmall.jpg' /></td><td><span style='font-family:Tahoma'>HELLO</span></td></tr></table>"; 
    strHtml += "</body></html>"; 

    mywindow.document.write(strHtml); 
    mywindow.print(); 
    mywindow.close() 
+0

我也試過這個,但又沒有結果。 –

+0

我已經試過這個,它的工作在Chrome版本27.0.1453.110米 請採取我的答案的最後編輯版本,並檢查您的版本的鉻 – Champ

+0

我的版本是一樣的你的 –