我有一个嵌入的 youtube 视频,它不会在 Windows 8 的 IE 上播放。它可以在我能想到的 Windows 8 中的所有其他浏览器中播放,而不是 IE。它也适用于 ipad 上的 safari,以及 android 手机和平板电脑中包含的浏览器。在这个 html 中是否有任何不兼容 IE 的内容?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<style type="text/css">
*{margin:0;padding:0} html,
body {height:100%;width:100%;overflow:hidden}
table {height:100%;width:100%;table-layout:static;border-collapse:collapse} iframe {height:112%;width:100%}
.header {border-bottom:0px solid #000000}
.content {height:100%}
</style>
</head>
<body>
<table>
<tr><td class="header"><div><h1></h1></div></td></tr> <tr>
<td class="content"> <iframe src="https://www.youtube.com/embed/VideoAddress?modestbranding=1&autoplay=1&controls=0&iv_load_policy=3&rel=0&showinfo=0&theme=light&color=white&autohide=0&disablekb=1&vq=hd1080" frameborder="0">
</td></tr>
</table>
</body>
</html>
(显然VideoAddress替换为视频的地址)