http://expert.csdn.net/Expert/topic/1152/1152576.xml?temp=.1146051

解决方案 »

  1.   

    可以打开一个FullScreen窗体,然后把大小改变一下
      

  2.   

    图标不能改.
    至于地址,你可以用window.open打开,不要地址栏.或
    <script>
    var w=window.open('about:blank','','fullscreen')
    w.document.write("无边窗口")
    w.document.body.style.backgroundColor='#f2f2f2'
    w.moveTo(200,200)
    w.resizeTo(200,180)
    </script>http://fason.nease.net/code/other/window.htm
      

  3.   

    1)
    try:window.open("弹出.htm","","fullscreen")
    or
    window.open("弹出.htm","","menubar=no")
    or
    window.showModalDialog("弹出.htm");
    or
    window.showModelessDialog("弹出.htm");2)
    try:<body ondrop="event.returnValue=false;event.cancelBubble=true;return false">