window.open(URL, WinName, 'left=,top=,width=,height=,dependent=yes,directoryies=no,location=no,menubar=,resizable=,status=no,toolbar=no');
裏面的值你應該看得明白吧

解决方案 »

  1.   

    模态对话框函数: showModalDialog()
    请参考:
    http://www.weste.net/html/200404/20040414QBI152055.html
      

  2.   

    http://www.changshainvest.gov.cn/myblog/blogview.asp?logID=140http://www.changshainvest.gov.cn/myblog/blogview.asp?logID=139
      

  3.   

    我要的是这样的效果:见图。 http://www.sepu.net/temp/list.gif
      

  4.   

    <div id='huiLayer' style='position:absolute; left:200px; top:20px; width:100px; height:99px; z-index:1; visibility:visible; display:none;'>
      <table width="100" height="99" border="0" cellpadding="0" cellspacing="0" align="center">
        <tr>
          <td width="100" height="250">.....</td>
        </tr>
      </table>
    </div>
    <input type='button' name='BB' value='Test' onClick="huiLayer.style.display ='';">
      

  5.   

    改: onClick="document.all.huiLayer.style.display ='';"
      

  6.   

    隐藏代码为;  onClick="document.all.huiLayer.style.display ='none';"
      

  7.   

    就是 FBug(花知) 的那种方法...