标签:span blank sel src scroll toolbar img charset tor
参数 | 说明 | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
URL | 可选。打开指定的页面的URL。如果没有指定URL,打开一个新的空白窗口 | ||||||||||||||||||||||||||||
name | 可选。指定target属性或窗口的名称。支持以下值:
|
||||||||||||||||||||||||||||
specs | 可选。一个逗号分隔的项目列表。支持以下值:
|
||||||||||||||||||||||||||||
replace | Optional.Specifies规定了装载到窗口的 URL 是在窗口的浏览历史中创建一个新条目,还是替换浏览历史中的当前条目。支持下面的值:
|
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>菜鸟教程(runoob.com)</title> 6 <script> 7 function openWin(){ 8 myWindow=window.open(‘‘,‘‘,‘width=200,height=100‘); 9 myWindow.document.write("<p>这是‘我的窗口‘</p>"); 10 myWindow.focus(); 11 } 12 </script> 13 </head> 14 <body> 15 16 <input type="button" value="打开窗口" onclick="openWin()" /> 17 18 </body> 19 </html>
Window open() 方法打开一个新的浏览器窗口或查找一个已命名的窗口。新弹窗。
标签:span blank sel src scroll toolbar img charset tor
原文地址:https://www.cnblogs.com/fei-yu9999/p/14394169.html