我有一个嵌入的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替换为视频地址)