我想準備一個印刷文件,我喜歡加載一個小徽標。圖像在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();
''可以''我不是說是你的問題的原因。 –
我以前試過但沒有結果。不管怎麼說,還是要謝謝你。 –
你的html像img標籤有問題,缺少td的結束標籤。我已經更新了html,請參閱我的回答 – Champ