欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM name 屬性

定義和用法

name 屬性可設(shè)置或返回 iframe 的名稱。

語法

iframeObject.name=name

實(shí)例

下面的例子可返回 iframe 的名稱:

<html>
<body>
<iframe src="frame_a.htm" id="frame1" name="iframe">
</iframe><br />

<script type="text/javascript">
x=document.getElementById("frame1");
document.write("The iframe's name is: ");
document.write(x.name);
</script>

</body>
</html>