search
HomeWeb Front-endJS TutorialJavaScript framework (iframe) operation summary_javascript skills

Overview of Framework Programming

An HTML page can have one or more subframes, which are marked with

References between frames

All frames in a page are provided as attributes of the window object in the form of a collection. For example: window.frames represents the collection of all frames in the page, which is similar to form objects, link objects, picture objects, etc. The difference is that these collections are properties of the document. Therefore, to reference a subframe, you can use the following syntax:

Copy the code The code is as follows:
window. frames["frameName"];
window.frames.frameName
window.frames[index]

Among them, the word window can also be replaced or omitted with self, assuming frameName is the first one on the page Frame, the following writing methods are equivalent:
Copy code The code is as follows:
self.frames[ "frameName"]
self.frames[0]
frames[0]
frameName

Each frame corresponds to an HTML page, so this frame is also an independent browser window. It has all the properties of a window. The so-called reference to the frame is also a reference to the window object. With this window object, you can easily operate the pages in it, such as using the window.document object to write data to the page, using the window.location property to change the page in the frame, etc.

The following introduces the mutual references between different levels of frameworks:

1. Reference from parent frame to child frame

Knowing the above principles, it is very easy to reference the child frame from the parent frame, that is:

Copy the code The code is as follows:
window.frames["frameName"];

This refers to the subframe named frameName in the page. If you want to reference a subframe within a subframe, according to the nature of the referenced frame, which is actually the window object, you can implement it like this:
Copy code The code is as follows:
window.frames["frameName"].frames["frameName2"];

In this way, the second-level sub-frame is referenced, and so on, a multi-layer framework can be implemented citation.

2. Reference from child frame to parent frame

Each window object has a parent attribute, representing its parent frame. If the frame is already a top-level frame, window.parent also represents the frame itself.

3. References between sibling frameworks

If two frames are sub-frames of the same frame, they are called sibling frames and can reference each other through the parent frame. For example, a page includes 2 sub-frames:

Copy code The code is as follows:




You can use the following statement in frame1 To reference frame2:
Copy code The code is as follows:
self.parent.frames["frame2"];

4. Mutual references between frameworks at different levels

The hierarchy of frames is for top-level frames. When the levels are different, as long as you know the level you are at and the level and name of the other frame, you can easily access each other by using the properties of the window object referenced by the frame, for example:

Copy code The code is as follows:
self.parent.frames["childName"].frames["targetFrameName"];

5. Reference to the top-level frame

Similar to the parent attribute, the window object also has a top attribute. It represents a reference to the top-level frame, which can be used to determine whether a frame itself is a top-level frame, for example:

Copy code Code As follows:
//Determine whether this frame is a top-level frame
if(self==top){
//dosomething
}

Change the loading page of the frame

The reference to the frame is a reference to the window object. Using the location attribute of the window object, you can change the navigation of the frame, for example:

Copy code The code is as follows:
window.frames[0].location="1.html";

This will redirect the page of the first frame in the page to 1 .html, taking advantage of this property, you can even use a single link to update multiple frames.
Copy code The code is as follows:



< ;!--somecode-->
link

Referencing JavaScript variables and functions in other frameworks

Before introducing the technique of referencing JavaScript variables and functions in other frameworks, let’s take a look at the following code:

Copy code The code is as follows:
function hello(){
alert("hello,ajax!");
}
window.hello();

If you run this code, a "hello, ajax!" window will pop up, which is the result of executing the hello() function. So why did hello() become a method of the window object? Because all global variables and global functions defined within a page are members of the window object. For example:
var a=1;
alert(window.a);[/code]
will pop up a dialog box showing 1. The same principle applies to sharing variables and functions between different frameworks by calling them through the window object.
For example: a product browsing page consists of two sub-frames. The left side represents the link of the product category; when the user clicks the category link, the corresponding product list is displayed on the right side; the user can click the [Purchase] link next to the product Add items to cart.
In this example, you can use the left navigation page to store the products that the user wants to buy, because when the user clicks the navigation link, what changes is another page, the product display page, while the navigation page itself remains unchanged. , so the JavaScript variables in it will not be lost and can be used to store global data. The implementation principle is as follows:
Assume that the left page is link.html and the right page is show.html. The page structure is as follows:
Copy code The code is as follows:




New Document





> ;

You can add a statement like this next to the products displayed in show.html:
Add to Shopping Che
where link represents the navigation frame. The arrOrders array is defined in the link.html page to store the ID of the product. The function addToOrders() is used to respond to the click event of the [Purchase] link next to the product. It The received parameter id represents the id of the product. In the example, it is a product with an id of 32068:

Copy the code The code is as follows:
var arrOrders=new Array();
function addToOrders(id){
arrOrders.push(id);
}

In this way, you can use arrOrders to get all the products ready to be purchased on the checkout page or shopping cart browsing page.
The framework can divide a page into multiple modules with independent functions. Each module is independent of each other, but can be connected through the reference of the window object. It is an important mechanism in Web development. In Ajax development, you can also use hidden frames to implement various techniques. When introducing Ajax example programming later, you will find that this technology will be used to upload files without refreshing and solve the forward and backward problems of Ajax.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools