How to realize the pop-up window of the home page by JavaScript
This article mainly introduces JavaScript how to achieve the home page pop-up window, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.
JavaScript Home Page Pop-up window skills
Pop-up in the middle of the window
Window.open ("http://www.cctv.com","","width=400,height=240,top="+(screen.availHeight-240)/2+",left="+(screen.availWidth-400)/2);============function WinOpen () {msg=open (", "DisplayWindow", "toolbar=no,directories=no,menubar=no"); msg.*** ("Hello!"); msg.*** ("Cool! this is the window opened by JavaScript!");}