弹出窗口具有损坏的图像链接

时间:2013-09-10 15:36:31

标签: javascript

我无法弄清楚为什么弹出窗口中的图像链接会被破坏。我正在处理的页面有一个链接表,每个链接应打开一个窗口,其中包含图像和描述。有人能告诉我错误可能在哪里吗?

<SCRIPT LANGUAGE="JavaScript"> 
<!-- 
var imgName; 
function pop(imgName,description) 
{ 
var openWindow=window.open('', 'newwin', 'width=400,height=325,resizable=0,toolbar=0,top=35,left=115'); 
openWindow.document.write('<HTML>') 
openWindow.document.write('<HEAD>') 
openWindow.document.write('<TITLE>&nbsp;</TITLE>') 
openWindow.document.write('</HEAD>') 
openWindow.document.write('<BODY BGCOLOR=#ffffff TOPMARGIN=0 MARGINHEIGHT=0 LEFTMARGIN=0 MARGINWIDTH=0 onBlur="window.close()">') 
openWindow.document.write('<CENTER>') 
openWindow.document.write('<A HREF="javascript:window.close()"><IMG SRC="images/parkimages/mapphotos/memorial_mapPhotos/'+imgName+'.jpg" BORDER=0></A><BR>') 
openWindow.document.write(description) 
openWindow.document.write('</CENTER>') 
openWindow.document.write('</BODY>') 
openWindow.document.write('</HTML>') 
} 
// --> 
</SCRIPT> 
<tr> 
<table width="600" border="0" cellpadding="0"> 
<td width="150"><a href="javascript:pop('mlrp_a1','Site A1')"title="Site A1"/>Site A1</a></td> 

1 个答案:

答案 0 :(得分:0)

您正在打开一个新窗口,在该窗口中注入非源自您的域的动态HTML,因此它没有root。您的图片来源是您网域的相对路径,就像您在其他网站上打开了新网页一样,您不希望相对路径引用您的网站。尝试使用图片的完整URL。