我正在动态添加 <iframe> 并添加 YouTube 视频。YouTube 播放器工作正常,但未显示全屏控件。
代码是:
var newIframe = $("<iframe width='80px' height='80px' "
+ "src='http://www.youtube.com/watch?v=r3TtgYuaVFk' "
+ "frameborder='0' allowfullscreen id='vid" + mindBoxID + "'>");
var tmp = "#"+mindBoxID;
$(tmp).append(newIframe);