“相同 name 的窗口只能创建一个,要想创建多个窗口则 name 不能相同。” 为何我不停地点及按钮(使用window.open()函数)可以一直创建新窗口?
意思是可以同时显示出多个窗口吗?
name参数是可选的。用于指定target属性或窗口的名称。
target属性为_blank(默认)/_self/_top(此时并没有给窗口命名,只是按照target属性打开网站)。
如果name参数的值不是上述target属性,则为窗口名称,如"_set1/_set2"。“相同name的窗口只能创建一个”意思是一个name对应一个窗口,相同name并不会报错,只是网站都会在同一个窗体(name对应的窗体)中打开,后打开的网站会替换掉先打开的网站。如果希望不同的网站同时显示在不同的窗体中,需要不同的name创建多个窗体。
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>window.open</title> <script type="text/javascript"> function Wopen(){ window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0'); } function imooc(){ window.open( 'http://www.imooc.com', '_blank', 'width=300,height=200,menubar=no,toolbar=no, status=no,scrollbars=yes') } </script> </head> <body> <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / > <input name="button" type="button" onClick="imooc()" value="点击打开慕课网(实验)"> </body> </html>
两个按钮都能创建新窗口,而且可以一直创建新窗口。