打开新窗口时保持原始页面位置

时间:2012-09-27 20:30:09

标签: html

我有办公室的热点地图。可以单击热点并弹出一个小窗口,但带有地图的较大页面会移回其原始位置。如何让我的较大地图页面在浏览器中保持相同位置?

<html>
<title>Office Map</title>


<div>
<img src="Office.jpg" width="2550" height="1650" usemap="#Map" class="mapper">
</div>

<map name="Map">
<!--MKTP51-->
<area shape="rect" title="MKTP51"   coords="1856,391,1874,420" alt="MKTP51" a href="#" onClick="window.open('PrinterPages/mktp51.html','mywindow','width=400,height=200,toolbar=no,location=no,directories=no,statu s=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no')">
<!--MKTP40-->  
<area shape="rect" title="MKTP40"   coords="772,322,790,358"   alt="MKTP40" a href="#" onClick=    "window.open('PrinterPages/mktp40.html','mywindow','width=400,height=200,toolbar=no,location=no,directories=no,statu s=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no')">

提前谢谢。

1 个答案:

答案 0 :(得分:1)

尝试将return false;放在onclick属性的末尾。 (注意,您需要在当前语句的末尾添加;

应停止标准链接处理,并因href="#"

而停止转到页面的开头

要确认,onclick属性的结尾应该是......

... resizable=no'); return false;">