frameBorder 属性可设置或者返回 frame/iframe 元素的 frameborder 属性值。
frameborder 属性指定是否显示 iframe 周围的边框。
frameObject.frameBorder=value
或者
iframeObject.frameBorder=value
frameBorder 属性可以是以下值:
值 | 描述 |
---|---|
1 | 开启边框(默认) |
0 | 关闭边框 |
所有主要浏览器都支持 frameBorder 属性
返回 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>
移除 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>
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。