area怎样实现鼠标移动到上面显示一个窗口,
窗口没有地址栏、菜单栏等等.....只有一个页面onMouseOver=? <img src="C:/Documents and Settings/Administrator/桌面/h05-1.gif" width="207" height="148" alt="新书架" hspace="10" align="left" usemap="#newbook" border="0">
 <map name="newbook">
<area shape="rect" coords="56,69,78,139" href="urlall.htm" target="_blank" alt="这里收集十万多个网址。" title="这里收集十万多个网址。" >
<area shape="rect" coords="82,70,103,136" href="siteall.htm" target="_blank" alt="网站设计师的启蒙读本。" title="网站设计师的启蒙读本。">
</map>

解决方案 »

  1.   

     <html>
     <script>
     function openWin(){
    window.open("http://www.baidu.com","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400");
     }
     </script>
     <body>
     <img id="shujia" src="C:/Documents and Settings/Administrator/桌面/h05-1.gif" width="207" height="148" alt="新书架" hspace="10" align="left" usemap="#newbook" border="0" onmouseover="openWin();">
     <map name="newbook">
    <area shape="rect" coords="56,69,78,139" href="urlall.htm" target="_blank" alt="这里收集十万多个网址。" title="这里收集十万多个网址。" >
    <area shape="rect" coords="82,70,103,136" href="siteall.htm" target="_blank" alt="网站设计师的启蒙读本。" title="网站设计师的启蒙读本。">
    </map>
    </body>
    </html>
      

  2.   

    showModalDialog('***.html','newDialog', 'help=no;status=no')
      

  3.   

    谢谢lixiaoyan3标题栏也不显示如何实现弹出只是一个页面,鼠标移走页面自动关闭求达人?
      

  4.   

    恩,那鼠标移动过去弹出的窗口自动关闭呢?
    onmouseout=?
     
    <html>  
    <script>  
     function openWin()
     {
     var newwindows =window.open("","wd","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=400, height=400"); 
      newwindows.focus();
      return true;
     }
     </script> 
     <body> 
     <img id="shujia" src="C:/Documents and Settings/Administrator/桌面/h05-1.gif" width="207" height="148" alt="新书架" hspace="10" align="left" usemap="#newbook" border="0"> 
     <map name="newbook"> 
     <area shape="rect" coords="56,69,78,139" href="urlall.htm" target="_blank" alt="这里收集十万多个网址。" title="这里收集十万多个网址。" onmouseover="openWin();" onMouseOut ="javascript:top.opener=null;top.close();">
     <area shape="rect" coords="82,70,103,136" href="siteall.htm" target="_blank" alt="网站设计师的启蒙读本。" title="网站设计师的启蒙读本。"> 
     </map>
     </body>
     </html>