设为首页 | 加入收藏
当前位置:首页>>网页特效>>网页按钮特效>> 按钮打开全屏窗口

按钮打开全屏窗口

时间:2005-1-14 21:02:13 来源:本站收集整理 作者:佚名

脚本说明:
把如下代码加入<body>区域中
<script>
<!--
function winopen(){
var targeturl="http://www.3lian.com"
newwin=window.open("","","scrollbars")
if (document.all){
newwin.moveTo(0,0)
newwin.resizeTo(screen.width,screen.height)
}
newwin.location=targeturl
}
//-->
</script>
  <input type="button" onClick="winopen()" value="细溪驿站" name="button">