Frame/IFrame 對象
定義和用法
frameBorder 屬性可設置或者返回 frame/iframe 元素的 frameborder 屬性值。
frameborder 屬性指定是否顯示 iframe 周圍的邊框。
語法
frameObject.frameBorder=value
或者
iframeObject.frameBorder=value
frameBorder 屬性可以是以下值:
瀏覽器支持
所有主要瀏覽器都支持 frameBorder 屬性
實例
實例 1
返回 frameborder 屬性的值:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
</head>
<body>
<iframe id="myframe" src="http://www.w3cschool.com" rel="external nofollow" rel="external nofollow" frameborder="0">
<p>你的瀏覽器不支持 iframes.</p>
</iframe>
<p>這個frameborder已設置:
<script>
document.write(document.getElementById("myframe").frameBorder);
</script>
<p>
</body>
</html>
嘗試一下 ?
實例 2
移除 frameborder:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script>
function removeBorder(){
document.getElementById("myframe").frameBorder="0";
}
</script>
</head>
<body>
<iframe id="myframe" src="http://www.w3cschool.com" rel="external nofollow" rel="external nofollow" >
<p>你的瀏覽器不支持iframes。</p>
</iframe>
<br><br>
<input type="button" onclick="removeBorder()" value="移除邊界">
<p><b>注意:</b> 該實例不能工作在IE瀏覽器。</p>
</body>
</html>
嘗試一下 ?
Frame/IFrame 對象
更多建議: