我试图使用jQuery在模式中打开视频,但无法找到将嵌入的视频url传递给打开模式的函数的方法。
在我的主题中,用户将视频添加到帖子上的ACF(高级自定义字段)oEmbed字段中,然后我希望当他们单击链接时,视频在覆盖中弹出。
我希望它能像这样工作:
function revealModal( event ) {
$(\'body\').prepend(\'<div class="modal visible"><div class="modal-content"></div><a class="close"></a></div>\');
$(\'.modal-content\').html(\'<div class="embed-container"><iframe width="1280" height="720" src="https://www.youtube.com/embed/cZbInCooAfo?feature=oembed" frameborder="0" allowfullscreen=""></div>\');
event.preventDefault();
}
。。。但不知道如何通过js从我的链接中获取html或只是嵌入的视频url(与进入ACF字段的链接不同)。
有人能提出一个明智的方法吗?