虽然这可能很安静,但我只是几个月的网络开发,我死在这里。我有一个页面,其中多个图像项设置为一个类。通过这个,我的意思是以下代码
<img src="http://img1.gif" id="GA2" class="CHAngeR" />
<img src="http://img1.gif" id="GA2" class="CHAngeR" />
我想执行一个编辑/附加图像的“src”属性的函数。
我尝试使用相同的Id,但我发现w3c推测是相反的,我也尝试了以下代码但仍然无效,我该怎么做。
<!DOCTYPE html>
<html>
<head>
<title>DOWNLOAD PAGE</title>
<input type="button" value="change image" id="iMgChAnGe" onclick="changeIMG()"/>
<div class="changer">
<img src="http://img1.gif" id="GA1" class="CHAngeR" />
<img src="http://img2.gif" id="GA2" class="CHAngeR" />
<img src="http://img3.gif" id="GA3" class="CHAngeR" />
<img src="http://img4.gif" id="GA4" class="CHAngeR" />
<img src="http://imgl.gif" id="GA5" class="CHAngeR" />
</div>
<script>
function ChangeIMG(){
document.getElementByClassName(CHAngeR).setAttribute("src","http://google.com/img/images/static.gif");
}
</script>
</head>
</html>
答案 0 :(得分:1)
手动循环播放图像......
var imgs = document.getElementsByClassName("...");
for (var i = 0; i < imgs.length; i++)
imgs[i].src = ...;
或使用jQuery:
$(".class").attr("src", ...);
答案 1 :(得分:0)