通过按钮创建窗口
实例说明
点击按钮创建窗口
技术要点
主要是使用 window 是对象的 open()方法来创建和调用其他窗口。
实现过程
1.制作用于点击按钮打开的窗口广告页面
<pre name="code" class="html"><html>
<head>
<title>打开新窗口显示广告信息</title>
<style type="text/css">
body{
background-image:url(new.jpg);
background-repeat:no-repeat;
}
</style>
</head>
<body></body>
</html>
2.实现创建窗口功能的 index.html
<html>
<head>
<title>通过按钮打开窗口</title>
<script type="text/jscript" language="javascript">
function pp()
{
window.open("new.html","new","height=280,width=800,top=10,left=20,resizable=no, location=no",false);
}
</script>
</head>
<body>
<form name = "from1" method = "post" action="">
<input type = "button" name = "Button" value= "创建新窗口" onClick = "pp()"/>
</form>
</body>
</html>
上一篇: 定时打开窗口
下一篇: 自动关闭的广告窗...