gpt4 book ai didi

javascript - 将查询字符串参数添加到 iframe 中的 YouTube 网址

转载 作者:行者123 更新时间:2023-11-30 14:03:08 25 4
gpt4 key购买 nike

我有一个通过 CMS 创建的页面,目前看起来像这样:

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p><iframe src="//www.youtube.com/embed/id?start=1" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allow="autoplay"></iframe></p>
</body>
</html>

我看到了一些与我需要的类似的东西,但是有没有一种方法可以使用 JS block ,这样只要我有一个带有 youtube url 的 iframe,我就可以将“&autoplay=1&mute=1”添加到要获取的源 URL:

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p><iframe src="//www.youtube.com/embed/id?start=1&autoplay=1&mute=1" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen" allow="autoplay"></iframe></p>
</body>
</html>

最佳答案

在您的脚本中获取您的 iframe 元素,然后使用 .setAttribute()

let myFrame = document.getElementById('idOfMYFrame')
myFrame.setAttribute('mute': '1')
myFrame.setAttribute('autoplay' : '1')

您可能需要在 window.onload 事件中执行此操作。

关于javascript - 将查询字符串参数添加到 iframe 中的 YouTube 网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55939373/

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