Method Name of JavaScript method use close carefully

Source: Internet
Author: User

Usually when we define a method with the same name as window, we automatically overwrite the method with the same name as the window. The close () method is no exception. Example:

<!DOCTYPE HTML Public "-//W3C//DTD XHTML 1.0 transitional//en" "http://www.w3.org/TR/xhtml1/DTD/ Xhtml1-transitional.dtd "><HTMLxmlns= "http://www.w3.org/1999/xhtml" ><Head>    <title></title>    <Scripttype= "Text/javascript">        functionClose () {alert (1); }    </Script></Head><Body>  <inputtype= "button"value= "OK"onclick= "Close ()" /></Body></HTML>

but click on the OK button and you'll see that "1" is not popping up at all as expected. This is because the Close method we have defined covers the Window.close, but there is a close method under document that is not overwritten. To override the Document.close method, we need to add a line of code:

Document.close = close;

Try one more success!!!

Method Name of JavaScript method use close carefully

Related Article

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.