gpt4 book ai didi

javascript - 在不破坏视频的情况下修改视频元素的outerHTML

转载 作者:行者123 更新时间:2023-12-04 10:21:15 25 4
gpt4 key购买 nike

我正在开发一个 Firefox 扩展,用于处理向视频元素添加叠加层。我正在使用 https://www.w3schools.com/html/mov_bbb.mp4作为一个孤立的例子来测试。但是,如果我这样说:

$0.outerHTML = $0.outerHTML;

在控制台中,视频停止播放并消失,只留下盒子阴影。请注意,我在常规网页上没有得到这种行为。我在 Chrome 中也没有得到这种行为。

我想添加我的 UI 元素,但我想不出解决方法。

最佳答案

目前尚不清楚您要对视频本身做什么。但是,我会首先尝试摆脱 CSS。如果您真的想撕掉视频,然后将其包装在您自己的 HTML 中并将其放回原处,您可以这样做:

// Get reference to the video element
const videoElement = document.getElementsByTagName('video')[0];
// Clone the element
const videoClone = videoElement.cloneNode(true);
// Create your new container
const videoContainer = document.createElement('div');
// Do what you want with the new container
const someHeading = document.createElement('h1');
someHeading.innerText = 'This is a video';
// Append stuff to the new container
videoContainer.append(someHeading);
// Append the cloned video to the new container
videoContainer.append(videoClone);
// Remove the old video
videoElement.remove();
// Append your new video container with cloned video
document.body.append(videoContainer);
<video width="320" height="240" controls>
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>


设置 outerHTML只会覆盖 HTML。您可以使用 innerHTML 的设置。和 outerHTML如果您想看到差异,但在您的情况下,结果可能相同。

关于javascript - 在不破坏视频的情况下修改视频元素的outerHTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60840518/

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