在我的代码中,我尝试使用Javascript暂停youtube视频。我把这个问题(下面)作为参考,它很有用。
How to pause a YouTube player when hiding the iframe?
问题在于它让我的网站更新鲜。我不确定为什么会这样或者是否有任何解决方法...这是我的代码...我正在使用AjaxModalPopupExtender来隐藏/显示我的div。
function ShowModalVideo() {
var Popup = $find("<%=mpeVideo.ClientID%>");
if (Popup) {
Popup.show();
}
return false;
}
function HideModalVideo() {
var Popup = $find("<%=mpeVideo.ClientID%>");
if (Popup) {
Popup.hide();
var iframe = document.getElementById("youtube");
iframe.postMessage('{"event":"command","func":"pauseVideo","args":""}', '*');
}
return false;
}
我非常感谢对此事的任何帮助或见解。