The effect is similar to that of clicking the maximize button. After you click the maximize button, the browser content is filled with the display, and the border of the browser window is squeezed out of the display. The biggest effect of this JS is that the browser's border is displayed on the display.
The JS Code is as follows:
Function resizewindow (){
If (window. Screen) {// determines whether the browser supports window. Screen and whether the browser supports screen.
VaR MYW = screen. availwidth; // defines a MYW and receives the width of the current full screen.
VaR myh = screen. availheight; // defines a MYW and receives the height of the current full screen.
Window. moveTo (0, 0); // place the window on the top left
Window. resizeTo (MYW, myh); // jump the length and width of the current form to MYW and myh
}
}
The HTML body uses the onload event to call this function:
<Body onload = "resizewindow ();">
Original post address: http://huang37927.iteye.com/blog/836806