gpt4 book ai didi

javascript - 拆分 youtube 视频网址

转载 作者:行者123 更新时间:2023-11-29 19:26:27 24 4
gpt4 key购买 nike

我需要从 YouTube 视频网址获取 ID。我正在使用拆分方法但是在控制台中它给出了以下错误

Uncaught TypeError: Cannot read property 'split' of undefined

我的视频网址是:https://www.youtube.com/embed/juIJGBxj-4w

我的代码是

id = url.split('/')[1].split('embed')[1];

最佳答案

The regular expression will extract the video ID from any YouTube URL and it works with shortened URLs (youtu.be) and embed URLs (youtube.com/embed/) as well.

 function extractVideoID(url){
var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/;
var match = url.match(regExp);
if ( match && match[7].length == 11 ){
return match[7];
}else{
alert("Could not extract video ID.");
}
}

关于javascript - 拆分 youtube 视频网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30522323/

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