使用JavaScript修改DOM元素属性

时间:2013-11-10 21:31:09

标签: javascript string html5 video html5-video

如何使用JavaScript修改视频元素的poster属性?

<video id="vid" poster="AB.png">

2 个答案:

答案 0 :(得分:2)

当然是:

document.getElementById("vid").setAttribute("poster","newValue");

使用jQuery:

jQuery("#vid").attr("poster","newValue");

它也是一个DOM属性/ id属性:

document.getElementById("vid").poster = "newValue";

使用jQuery:

jQuery("#vid").prop("poster","newValue");

答案 1 :(得分:1)

是的,海报是一个与其他任何一样的属性。

直接JS

document.getElementById("vid").setAttribute("poster","foo");

使用jQuery

$('#vid').attr('poster','foo');