HTML DOM src 属性

定义和用法

src 属性可设置或返回应当被载入框架中的文档的 URL。

该属性只是 HTML 的 <frame> 标记的一个对应,并不是 Window.location 这样的 Location 对象。

语法

frameObject.src=URL

实例

在我们的例子中,首先将创建包含带有两个列的框架集的 HTML 文档。每列设置为浏览器窗口的 50%:

<html>
  <frameset cols="50%,50%">
    <frame id="lFrame" src="frame_src.htm">
    <frame id="rFrame" src="frame_a.htm">
  </frameset>
</html>

HTML 文档 "frame_src.htm" 被放入第一列,而 HTML 文档 "frame_a.htm" 被放入第二列。

下面是 "frame_src.htm" 的源代码:

<html>
<head>
<script type="text/javascript">
function newSrc()
{
parent.document.getElementById("lFrame").src="http://w3school.com.cn"
parent.document.getElementById("rFrame").src="http://google.com"
}
</script>
</head>

<body>
<form>
<input type="button" onclick="newSrc()"
value="Change frame source" />
</form>
</body>

</html>