JavaScript-window object usage example _ basic knowledge-js tutorial

Source: Internet
Author: User
The window object is the top-level object in the JavaScript browser object model. It contains multiple common methods and attributes. The following describes how to use the window object as the top-level object in the JavaScript browser object model, contains multiple common methods and attributes:

1. open a new window

The Code is as follows:


Window. open (pageURL, name, parameters)


Where:

PageURL is the sub-window path

Name is the sub-window handle

Parameters is window parameters (parameters are separated by commas)

For example:

The Code is as follows:


Window. open ("http://www.cnblogs.com/zhouhb/", "open", 'height = 100, width = 400, top = 0, left = 0, toolbar = no, menubar = no, scrollbars = no, resizable = no, location = no, status = no ');


2. Open the mode window.

The Code is as follows:


Window. showModalDialog ("http://www.cnblogs.com/zhouhb/", "open", "toolbars = 0; width = 200; height = 200 ");


3. Close the window. No prompt box is displayed.

If the webpage is not opened through a script program (window. open (), call window. before closing the window, you must close the window. the opener object is set to null. Otherwise, the browser (IE7 and IE8) will pop up a confirmation and close dialog box.

The Code is as follows:


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.