这是重新打开一个无工具栏窗口的代码
你可以添加一个按钮,把这段代码写到按钮的onclick事件中
<input type="button" value="提交" name="B1" onclick="Jscript:window.open('about:blank', 'poppage1', 'toolbars=0, scrollbars=1, location=0,  statusbars=0, menubars=0, resizable=0, width=700, height=500, left = 0, top =0');">

解决方案 »

  1.   

    <a href="#" onclick="window.open('b.htm','poppage1','toolbars=0,scrollbars=1,location=0,statusbars=0,menubars=0,resizable=0,width=700,height=500,left = 0,top =0');">测试,打开的新页面无工具栏等</a>
      

  2.   

    <a href=# onclick='window.open("b.htm","win_title","width=400,height=400")'>link to b.htm</a>
    这样所有的要求都达到了