日期:2014-05-16 浏览次数:20427 次
补充资料转自:http://www.cnblogs.com/superfeeling/archive/2011/09/14/2176435.html
?
?
index.html包含两个iframe,两个iframe的src分别是index1.html和index2.html
?
index.html
?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> New Document </title> <meta name="Generator" content="EditPlus"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> </head> <body> <iframe src="index1.html" width="100%" height="300" name='if1'> </iframe> <iframe src="index2.html" width="100%" height="300" name='if2'> </iframe> </body> </html>
?index1.html
?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> New Document </title> <meta name="Generator" content="EditPlus"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> <script type="text/javascript"> function init() { alert(parent.frames['if2'].document.getElementById('d2').innerText); } window.onload = init; </script> </head> <body> <div id='d1'>hello world</div> </body> </html>
?
index2.html
?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> New Document </title> <meta name="Generator" content="EditPlus"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> </head> <body> <div id='d2'>hello java</div> </body> </html>