我使用 ajax 在页面加载时加载 youtube 视频
$(document).ready(function(){
$.ajax({
url : '/myurl',
type:"post",
data:{"d": $('#d_id').val()},
async:false,
success:function(data){
$('#container').html(data);
//data is an emebed string
//This is what i get from PHP page
/*<embed class="frame" width="850" scrolling="no" height="415" frameborder="0" src="http://www.youtube.com/embed/' . $k[0] . '?showinfo=1&modestbranding=1&autoplay=1&rel=0&iv_load_policy=3&cc_load_policy=1&loop=1&playlist=' . $k[0] . '&wmode=transparent" frameborder="0"" allowfullscreen="yes" wmode="Opaque"></embed> */
}
});
});
在除 IE 之外的所有浏览器中工作
根据屏幕截图,我收到错误“数学未定义”如果我将嵌入更改为 iframe,我会遇到更严重的错误,例如“__flash__removecallback is undefined”。
更新
如果我使用 emebed,整个事情在 IE8 中都不起作用
有人帮助我 IE 让我发疯