gpt4 book ai didi

javascript - 从

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:50:05 25 4
gpt4 key购买 nike

我得到了以下 HTML:

<video width="552" height="572" id="video" autoplay preload="none" poster="image.png">

我将如何删除 autoplay完全来自 <video>元素?

我试过类似下面的方法:

//Attempt
jQuery('video').remove('autoplay');

//Attempt
jQuery( 'video' ).removeClass( 'autoplay' );

最佳答案

删除:

纯 javascript:

document.getElementsByTagName('video')[0].removeAttribute('autoplay');

document.getElementById('VIDEO_ID').removeAttribute('autoplay');

使用 jQuery:

$('video').removeAttr("autoplay");

添加:

纯 javascript:

document.getElementsByTagName('video')[0].setAttribute('autoplay','');

document.getElementById('VIDEO_ID').setAttribute('autoplay','');

使用 jQuery:

$('video').attr("autoplay","");

关于javascript - 从 <video> 元素中移除 "autoplay"属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19519084/

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