gpt4 book ai didi

javascript - 如何使用 jquery 检查有效的 Youtube url

转载 作者:可可西里 更新时间:2023-11-01 02:33:02 25 4
gpt4 key购买 nike

在 Jquery 中,我想单独检查来自 youtube 的特定 url 并显示成功状态,而其他我想通过将其声明为无效 url 来跳过

var _videoUrl = "youtube.com/watch?v=FhnMNwiGg5M";
if (_videoUrl.contains("youtube.com"))
{
alert('Valid');
}
else
{
alert('Not Valid');
}

如何检查包含。或任何其他选项来单独检查有效的 youtube url。

最佳答案

我从闭包库中找到这个,可能很方便:

/**
* A youtube regular expression matcher. It matches the VIDEOID of URLs like
* http://www.youtube.com/watch?v=VIDEOID.
* @type {RegExp}
* @private
*/
goog.ui.media.YoutubeModel.matcher_ =
/https?:\/\/(?:[a-zA_Z]{2,3}.)?(?:youtube\.com\/watch\?)((?:[\w\d\-\_\=]+&(?:amp;)?)*v(?:<[A-Z]+>)?=([0-9a-zA-Z\-\_]+))/i;

关于javascript - 如何使用 jquery 检查有效的 Youtube url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2256930/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com