我得到以下 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' );