HTML DOM src 属性
定义和用法
src 属性可设置或返回被载入 iframe 中的文档的 URL。
语法
- iframeObject.src=URL
实例
下面的例子可更改两个框架的源:
- <html>
- <head>
- <script type="text/javascript">
- function changeSource()
- {
document.getElementById("frame1").src="frame_c.htm"
document.getElementById("frame2").src="frame_d.htm"
- }
- </script>
- </head>
- <body>
- <iframe src="frame_a.htm" id="frame1"></iframe>
- <iframe src="frame_b.htm" id="frame2"></iframe>
- <br /><br />
- <input type="button" onclick="changeSource()"
- value="Change source of the two iframes" />
- </body>
- </html>