codecamp

HTML iframe seamless 属性

HTML <iframe> seamless 属性

HTML iframe 标签参考手册 HTML <iframe> 标签

实例

一个看起来就像包含的文档的一部分的 <iframe>:

<iframe src="demo_iframe.htm" seamless></iframe>

尝试一下 »

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

注意:只有 Chrome 和 Safari 6 支持 <iframe> 标签的 seamless 属性。


定义和用法

seamless 属性是一个布尔属性。

seamless 属性规定 <iframe> 看起来像是包含的文档的一部分(没有边框和滚动条)。


HTML 4.01 与 HTML5之间的差异

seamless 属性是 HTML5 中的新属性。


HTML 与 XHTML 之间的差异

在 XHTML 中,禁止属性简写,seamless 属性必须定义为 <iframe seamless="seamless">。


语法

<iframe seamless>

HTML iframe 标签参考手册 HTML <iframe> 标签
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML标签

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }