打印本文 打印本文 关闭窗口 关闭窗口
页面导航隐藏格式的浮动层(弹出的无任何边的窗口!)
作者:武汉SEO闵涛  文章来源:敏韬网  点击数911  更新时间:2009/4/23 11:15:16  文章录入:mintao  责任编辑:mintao

说明: 隐藏格式的浮动层(弹出的无任何边的窗口!)

效果: 运行后查看!

代码:

<html>
<head>
<title>隐藏格式的浮动层 网教中国教学网</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<!-------------------------------->
<body onLoad="doAgilePopup()">
<script>

// Set the url of the banner popup window page
var theURL = "http://www.ntc.com.cn";

// Set the title of the popup window
var title = "网教中国教学网"

// Set the size of the popup window
var windowWidth = 760; // cannot be less than 100
var windowHeight = 160; // cannot be less than 100

// Set the position of the popup window
var windowX = 5;
var windowY = 120;

// Set true to auto-center (positions will be ignored)
var autocenter = false;

// Set true for popup to close when launch page does
var autoclose = false;

// Do not edit below this line.
// ============================

var s="width="+windowWidth+",height="+windowHeight;
var beIE=document.all?true:false;
var done=new Object("no");

if(autocenter){
windowX = (window.screen.width-windowWidth)/2;
windowY = (window.screen.height-windowHeight)/2;
}

function doAgilePopup(){
if (beIE){
agilePopper = window.open("","popAgile","fullscreen,"+s);
agilePopper.blur();
window.focus();
agilePopper.resizeTo(windowWidth,windowHeight);
agilePopper.moveTo(windowX,windowY);
var frameString=""+
"<html>"+
"<head>"+
"<title>"+title+"</title>"+
"</head>"+
"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
"<frame name='top' src='"+theURL+"' scrolling=no>"+
"<frame name='bottom' src='about:blank' scrolling='no'>"+
"</frameset>"+
"</html>"
agilePopper.document.open();
agilePopper.document.write(frameString);
agilePopper.document.close();
}else{
agilePopper=window.open(theURL,"popAgile","scrollbars=no,"+s);
agilePopper.blur();
window.focus();
agilePopper.resizeTo(windowWidth,windowHeight);
agilePopper.moveTo(windowX,windowY);
}
agilePopper.blur();
if (autoclose){
window.onunload = function(){agilePopper.close();}
}
done="okay";
}

</script>

<!---------------------------------->
</body>
</html>


打印本文 打印本文 关闭窗口 关闭窗口