我正在使用 javascript 创建一个新窗口并显示服务器上存在的图像。该窗口可以正常打开并在 Firefox 上显示图像,但在 Chrome 上不显示。有什么问题?
function wopen(){
nwin = window.open('','_blank','directories=no,height=600,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,width=800,top=10,left=60');
nwin.document.open();
var msg = "<html><head><title>Test page</title></head><body><img src='http://www.mywebsite.com/images/logo.jpg' border='0' height='20' width='20'></body></html>"
nwin.document.write(msg);
nwin.document.close();
}
当我调用此函数时,窗口打开,但图像未以 chrome 显示,但在 Firefox 中正确显示。这里有什么问题?