1<SCRIPT LANGUAGE="javascript">
2 <!--
3 window.open ('page.html')
4 -->
5 </SCRIPT>
放在<script LANGUAGE="javascript">标签和</script>之间。<!-- 和 -->是对一些版本低的浏览器起作用,在这些老浏览器中不会将标签中的代码作为文本显示出来。window.open('page.html')用于控制弹出新的窗口page.html,如果page.html不与主窗口在同一路径下,前面应写明路径,绝对路径(http://)/和相对路径(../)均可。用单引号和双引号都可以,只是不要混用。这一段代码可以加入HTML的任意位置,<head>和</head>之间可以,<body>间</body>也可以,越前越早执行,尤其是页面代码长,又想使页面早点弹出就尽量往前放。
Code
1<SCRIPT LANGUAGE="javascript">
2 <!--
3 window.open ('page.html', 'newwindow', 'height=100, width=400, top=0,left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')
4 file://。/。
5 -->
6 </SCRIPT>
参数解释:
<SCRIPT LANGUAGE="javascript"> js脚本开始;
window.open 弹出新窗口的命令;
'page.html' 弹出窗口的文件名;
'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空''代替;
height=100 窗口高度;
width=400 窗口宽度;
top=0 窗口距离屏幕上方的象素值;
left=0 窗口距离屏幕左侧的象素值;
toolbar=no 是否显示工具栏,yes为显示;
menubar,scrollbars 表示菜单栏和滚动栏。
resizable=no 是否允许改变窗口大小,yes为允许;
location=no 是否显示地址栏,yes为允许;
status=no 是否显示状态栏内的信息(通常是文件已经打开),yes为允许;
</SCRIPT> js脚本结束
Code
1<html>
2 <head>
3 <script LANGUAGE="JavaScript">
4 <!--
5 function openwin() { window.open ("page.html", "newwindow", "height=100, width=400, toolbar=
6 no, menubar=no, scrollbars=no, resizable=no, location=no, status=no")
7 file://写/成一行
8 }
9 file://--/>
10 </script>
11 </head>
12 <body onload="openwin()">
13 任意的页面内容
14 </body>
15 </html>
这里定义了一个函数openwin(),函数内容就是打开一个窗口。在调用它之前没有任何用途。
怎么调用呢?
方法一:<body onload="openwin()"> 浏览器读页面时弹出窗口;
方法二:<body onunload="openwin()"> 浏览器离开页面时弹出窗口;
方法三:用一个连接调用:<a href="#" onclick="openwin()">打开一个窗口</a> 注意:使用的“#”是虚连接。
方法四:用一个按钮调用:<input type="button" onclick="openwin()" value="打开窗口">
Code
1<script LANGUAGE="JavaScript">
2 <!--
3 function openwin()
4 { window.open ("page.html", "newwindow", "height=100, width=100, top=0,left=0,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no")
5 file://写/成一行
6 window.open ("page2.html", "newwindow2", "height=100, width=100, top=100, left=100,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no")
7 file://写/成一行
8 }
9 file://--/>
10 </script>
为避免弹出的2个窗口覆盖,用top和left控制一下弹出的位置不要相互覆盖即可。最后用上面说过的四种方法调用即可。
注意:2个窗口的name(newwindows和newwindow2)不要相同,或者干脆全部为空。
- 主窗口打开文件1.htm,同时弹出小窗口page.html
1<script language="javascript">
2 <!--
3 function openwin()
4 {window.open("page.html","","width=200,height=200")
5 }
6 file://--/>
7 </script>
上面代码加入<head>区,以下代码加入<body>区:<a href="1.htm" onclick="openwin()">open</a>
1<script language="JavaScript">
2 function closeit()
3 {setTimeout("self.close()",10000) file://毫/秒}
4 </script>
上面代码加入<head>区,以下代码修改<body>属性:<body onload="closeit()">
1<FORM>
2 <INPUT TYPE='BUTTON' VALUE='关闭' onClick='window.close()'>
3 </FORM>
Code
1<html>
2 <head>
3 <SCRIPT LANGUAGE="JavaScript">
4 function openwin()
5 {OpenWindow=window.open("", "newwin", "height=250, width=250,toolbar=no,scrollbars="+scroll+",menubar=no");
6 file://写/成一行
7 OpenWindow.document.write("<TITLE>例子</TITLE>")
8 OpenWindow.document.write("<BODY BGCOLOR=#ffffff>")
9 OpenWindow.document.write("<h1>Hello!</h1>")
10 OpenWindow.document.write("New window opened!")
11 OpenWindow.document.write("</BODY>")
12 OpenWindow.document.write("</HTML>")
13 OpenWindow.document.close()}
14 </SCRIPT>
15 </head>
16 <body>
17 <a href="#" onclick="openwin()">打开一个窗口</a>
18 <input type="button" onclick="openwin()" value="打开窗口">
19 </body>
20 </html>
21
Code
1<script>
2 function openwin()
3 {window.open("page.html","","width=200,height=200")}
4 function get_cookie(Name)
5 {var search = Name + "="
6 var returnvalue = "";
7 if (document.cookie.length > 0) {
8 offset = document.cookie.indexOf(search)
9 if (offset != -1) {
10 offset += search.length
11 end = document.cookie.indexOf(";", offset);
12 if (end == -1)
13 end = document.cookie.length;
14 returnvalue=unescape(document.cookie.substring(offset,end))
15 }
16 }
17 return returnvalue;
18 }
19 function loadpopup(){
20 if (get_cookie('popped')==''){
21 openwin()
22 document.cookie="popped=yes"
23 }
24 }
25 </script>
上面代码加入<head>区,以下代码修改<body>区:<body onload="loadpopup()">
命运负责洗牌,但是玩牌的是我们自己!
Tag标签: javascript,弹出,窗口