a.html:
<html>
<body>
<script type="text/javascript">
function show(){ alert(document.getElementById("frame2").src);}
</script>
<iframe name="frame2" id="frame2" src="ab.html"></iframe>
<iframe name="frame3" id="frame3" src="axx.html"></iframe>
<button onclick="show()">测试</button>
</body>
</html>
ab.html:
<html> <body> <script type="text/javascript"> function show() { alert(parent.document.getElementById("frame2").src); } </script> <button onclick="show()">测试</button> </body> </html>
在iframe1中使用parent来获取父页面的iframe2。