1. Pop up a full screen window
<html>
<body onload=”window.open(‘http://lre.cn’,’example01′,’fullscreen’);”>;
<b>www.lre.cn</b>
</body>
</html>
2. Pop up a window that has been transformed by F11
<html>
<body onload=”window.open(”http://lre.cn’,’example02′,’channelmode’);”>;
<b>www.lre.cn</b>
</body>
</html>
3. Pop up a window with a favorite link toolbar
<html>
<body onload=”window.open(‘http://lre.cn’,’example03′,’width=400,height=300,directories’);”>
<b>www.lre.cn</b>
</body>
</html>
4. Web page dialog
<html>
<SCRIPT LANGUAGE=” javascript ”>
<!–
showModalDialog(‘http://lre.cn’,’example04′,’dialogWidth:400px;dialogHeight:300px;
dialogLeft:200px;dialogTop:150px;center:yes;help:yes;resizable:yes;status:yes’)
//–>
</SCRIPT>
<b>www.lre.cn</b>
</body>
</html>
<html>
<SCRIPT LANGUAGE=”javascript”>
<!–
showModelessDialog(‘http://lre.cn’,’example05′,’dialogWidth:400px;dialogHeight:300px;…
The post js popup list first appeared on Lenix Blog .
This article is reprinted from https://blog.p2hp.com/archives/9812
This site is for inclusion only, and the copyright belongs to the original author.