使用JS / Regex将播放器包装Vimeo URL

我已经开始在http://joshrodg.com/isbellfilms2/

上开发网站。

我有一个可生成定价表的WordPress插件。我喜欢插件为用户工作和起作用的方式,但是需要调整一件事。

该插件有一个描述的地方,我没有,但我想添加一个视频。

我认识到这是一个WordPress网站,但是我遇到的问题与我的脚本有关。

我想做的是找到Vimeo URL并将其传递给播放器。

我找到了一段代码,对其进行了一些调整,但效果不佳。

我正在使用的JS看起来像:

<script type="text/javascript">
    $(document).ready(function() {
        var classSelector = document.querySelectorAll('.rpt_description');
        var vimeoRegEx = /(?:http?s?:\/\/)?(?:www\.)?(?:vimeo\.com)\/?(.+)/g;
        var vimeoEmbed = '<div class="embed-container"><iframe src="https://player.vimeo.com/video/$1" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>';

        array.prototype.forEach.call(classSelector,function(el) {
            if (vimeoRegEx.test(el.innerHTML)) {
                el.innerHTML = el.innerHTML.replace(vimeoRegEx,vimeoEmbed);
            }
        });
    });
</script>

插件输出的带有Vimeo URL的代码:

<div class="rpt_plan rpt_plan_ori rpt_plan_0  ">
    <div style="text-align: center; height: 15px;" class="rpt_title rpt_title_0">The Family Yearbook Film</div>
    <div class="rpt_head rpt_head_0" style="height: 250px;">
        <div class="rpt_recurrence rpt_recurrence_0">(Yearly)</div>
        <div class="rpt_price rpt_price_0"><span class="rpt_currency"></span>$350</div>
        <div style="color:#3ac893;" class="rpt_subtitle rpt_subtitle_0">Stay up to date with your changing family for an entire year.</div>
        <div class="rpt_description rpt_description_0">https://www.vimeo.com/320417542</div>
        <div style="clear:both;"></div>
    </div>
    <div class="rpt_features rpt_features_0" style="height: 183px;">
        <div style="color:black;" class="rpt_feature rpt_feature_0-0">A 3-5 min film every 3 months (4 total films)</div>
        <div style="color:black;" class="rpt_feature rpt_feature_0-1">Plus one Keepsake film</div>
        <div style="color:black;" class="rpt_feature rpt_feature_0-2">30% off discount on any additional films you purchase that year.</div>
        <div style="color:black;" class="rpt_feature rpt_feature_0-3">Upload 30-450 clips</div>
    </div>
    <div style="clear:both;"></div>
    <a target="_self" href="https://isbellfamilyfilms.com/#order-form" style="background:#3ac893" class="rpt_foot rpt_foot_0">Add to Cart</a>
</div>

正则表达式找到URL,而JS则获取URL并将其传递给播放器,这并不完全正确。我确保此JS在插件之前执行,但是我已经尝试了两种方法。

我确定我缺少一些简单的东西,感谢您的帮助。

谢谢,
乔什

violawu 回答:使用JS / Regex将播放器包装Vimeo URL

完全忘记了jQuery参考,太尴尬了!只需在我的JS代码之前添加此行:

<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>

我还必须大写Array

希望这对某人有帮助!
乔什

本文链接:https://www.f2er.com/3147896.html

大家都在问