gpt4 book ai didi

javascript - 书签以嵌入带有参数的YouTube页面

转载 作者:行者123 更新时间:2023-12-03 06:01:10 25 4
gpt4 key购买 nike

我当前的代码提取YouTube视频的视频ID,并将其嵌入到自己的页面中:

document.location = 'http://www.youtube.com/embed/' + document.location.href.match(/[&?]v=([^&#]*)/i)[1]

我想添加代码,在视频ID之后添加三个YouTube参数“?modestbranding = 1&rel = 0&autoplay = 1”,以使其变为:
http://www.youtube.com/embed/[VIDEOID]?modestbranding=1&rel=0&autoplay=1

如何才能做到这一点?

最佳答案

只需将其添加到其余document.location分配中:

document.location = 'http://www.youtube.com/embed/' + document.location.href.match(/[&?]v=([^&#]*)/i)[1] + "?modestbranding=1&rel=0&autoplay=1"

关于javascript - 书签以嵌入带有参数的YouTube页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17457216/

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