网页制作的高手请多多帮忙!

时间:2022-03-16 05:05:06
网页制作的高手请多多帮忙!

我想制作的网页想让他不显示地址栏和工具栏,请问怎么样才能实现,请给个详细的例子!我对网页制作不熟!

拜托各位高手!

5 个解决方案

#1



<SCRIPT>
  function view(url){  
  var url;  
var w,h
w=100
h=100
  pop=window.open(url,'_blank',"fullscreen=yes",'status=no,scrollbars=yes,top=20,left=110,width=600,height=460');  
  pop.moveTo((screen.width-w)/2,(screen.height-h)/2);
  }
</SCRIPT>

#2


倒,IE的事情。
在弹出窗口中处理

#3



<SCRIPT>
  function view(url){  
  var url;  
var w,h
w=100
h=100
  pop=window.open(url,'_blank',"fullscreen=yes",'status=no,scrollbars=yes,top=20,left=110,width=600,height=460');  
  pop.resizeTo(w,h);
  pop.moveTo((screen.width-w)/2,(screen.height-h)/2);
  }
</SCRIPT>

<div onclick="view('#')">全屏后alt+F4来关闭</div>

#4


各位大哥我做个系统,我想不显示地址栏什么的会更美观些,所以还请各位多多帮忙!

请谅解小弟的愚昧!

我情愿把更多的分给你们!我特别急,请给我个特别详细的例子,拜托!!!

#5


<div align="center" onClick="MM_openBrWindow('wo.htm','1','width=400,height=500')">点这里</div>

注明:其中的“1”是窗口的名字!
该窗口没有 工具栏,地址栏--

('wo.htm','1','location=yes,width=400,height=500')--这是代有地址栏的

('wo.htm','1','resizable=yes,width=400,height=500')--这是可以调整大小的


('wo.htm','1','menubar=yes,width=400,height=500')--有菜单的!


('wo.htm','1','toolbar=yes,width=400,height=500')--有导航的!


('wo.htm','1','scrollbars=yes,width=400,height=500')--需要是有滑块的

放在<BODY>里!
一定能看懂吧?!!









#1



<SCRIPT>
  function view(url){  
  var url;  
var w,h
w=100
h=100
  pop=window.open(url,'_blank',"fullscreen=yes",'status=no,scrollbars=yes,top=20,left=110,width=600,height=460');  
  pop.moveTo((screen.width-w)/2,(screen.height-h)/2);
  }
</SCRIPT>

#2


倒,IE的事情。
在弹出窗口中处理

#3



<SCRIPT>
  function view(url){  
  var url;  
var w,h
w=100
h=100
  pop=window.open(url,'_blank',"fullscreen=yes",'status=no,scrollbars=yes,top=20,left=110,width=600,height=460');  
  pop.resizeTo(w,h);
  pop.moveTo((screen.width-w)/2,(screen.height-h)/2);
  }
</SCRIPT>

<div onclick="view('#')">全屏后alt+F4来关闭</div>

#4


各位大哥我做个系统,我想不显示地址栏什么的会更美观些,所以还请各位多多帮忙!

请谅解小弟的愚昧!

我情愿把更多的分给你们!我特别急,请给我个特别详细的例子,拜托!!!

#5


<div align="center" onClick="MM_openBrWindow('wo.htm','1','width=400,height=500')">点这里</div>

注明:其中的“1”是窗口的名字!
该窗口没有 工具栏,地址栏--

('wo.htm','1','location=yes,width=400,height=500')--这是代有地址栏的

('wo.htm','1','resizable=yes,width=400,height=500')--这是可以调整大小的


('wo.htm','1','menubar=yes,width=400,height=500')--有菜单的!


('wo.htm','1','toolbar=yes,width=400,height=500')--有导航的!


('wo.htm','1','scrollbars=yes,width=400,height=500')--需要是有滑块的

放在<BODY>里!
一定能看懂吧?!!