嵌入式YouTube视频不会在IE浏览器上播放
问题描述:
我有一个嵌入式YouTube视频,它不会在Windows 8的IE浏览器上播放。它可以在Windows 8中的所有其他浏览器中播放,我可以想象,只是不IE。它也适用于ipad上的safari,以及安卓手机和平板电脑中包含的浏览器。有没有什么东西在这个html中看到任何不兼容的IE?嵌入式YouTube视频不会在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被替换为视频的地址)
请在指定IE版本时询问IE相关问题。 – Spudley