JavaScript and Frames, Part I: Controlling Multiple Frames - www.docjavascript.com

来源:百度文库 编辑:神马文学网 时间:2024/04/27 14:04:19
Controlling Multiple Frames
One of the capabilities of frame sets is the ability to control multiple frames from a single frame. There are two basic ways to do it. The first one is a combination of an HREF and an event handler assignment:
Multiple Load #1
 
In this example, we first load frame4new.html (HREF="frame4new.html") at the bottom row frame (TARGET="bottomrow"). Then, we use the onClick event handler to load the file frame4new.html in frame no. 1:
onClick="parent.frames[1].location.href = ‘frame4new.html‘;
 
The second approach is to include all operations in the HREF‘s javascript: URL:
Multiple Load #2
 
Here we assign frame4new.html to both frame 1 and frame 2. Although this technique doesn‘t degrade as well as the first for non-javascript enabled browsers, it is more straight-forward. Familiar yourself with the javascript: URL and its usage. We have covered this subject inColumn 34, for example. Remember to return void from you JavaScript statements, as explained in Column34. It‘s time toplay with the frames now. Convince yourself that both methods work the same and as described above.
Here is frame1new.html:
Frame 1Frame 1

Multiple Load #1
// (The above two lines should be joined as one line.// They have been split for formatting purposes.)Multiple Load #2// (The above two lines should be joined as one line.// They have been split for formatting purposes.)