Thoughts on js architecture for retrieving top-level window objects

Source: Internet
Author: User

1) design an outermost page. jsp contains a. js

A. js uses window. top to retrieve the top-navigation page window;

The advantage is that if. in jsp, The ifram N-layer page, the N-layer page only needs to call. jsp window. top. parent. parent .......

2) The second method is as follows:

Define a <div id = 'myflag'> </div> in a. jsp.

The following functions are defined in a. js:

Function getWindow (){
Var obj = window. self;
While (true)
{
If(obj.doc ument. getElementById ("myFlag "))
{
Return obj;
}
Obj = obj. window. parent;
}
}

The first method is to use window. top,

The second method actually uses the parent. parent... method to obtain the above... level mark and then return the object.

The two methods seem to be the first one, which is labor-saving and convenient, but when two page fusion scenarios occur, that is, B. jsp iframe. when jsp occurs,. js window. top is invalid. You can only use the second method.

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.